flights_gui_tests 2.3.51 → 2.3.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f52732e955fbfe5ea9102078277d597b2f840da2
4
- data.tar.gz: 2c0281a0693c0c7622a4f50a79a94bd6f40c6654
3
+ metadata.gz: b3d27131f77b4f30642ce222b10b2396b906e015
4
+ data.tar.gz: abe7a5e2da2062e1f45c569470034b2b7a176c5a
5
5
  SHA512:
6
- metadata.gz: daa07dcd474b1d6769f092fce7130ec8ca9c7df33048e97b1e212b1b67e7f3bd19ab4b044355d3bff0a9f99a1d2e81a4d85148e35a2b7396d557f39ae8f9ee87
7
- data.tar.gz: 2302e4b0cfb82e115216680238b44df95748c055171ab520db1f8549aaf0a2facec096171c28d3a25e113595ccb4d5b7f4de8cd2bdf0d2e328c8a37f1f0d34bc
6
+ metadata.gz: d02c27eb0e51972a8603e8fc05d39a8aa0a110754746bd6874ebd69dc730d2089bfce9ef120ecaf85f5cc0dcde30822434e53aff46dcebd79e36f89618c6aa90
7
+ data.tar.gz: 870be92d48bf88a6148da7bb57b56d0b9bd37f8313464cd65b780bdde341291af26ce4a686e6a94985a0597b8f41509c06d25e4851af0d793911055feef83ef8
@@ -18,7 +18,9 @@ Y(/^(?:verifico|valido) que la ciudad destino sea la que se eligio$/) do
18
18
  ciudades = (doc/"div.mainTitle/h1").inner_text.strip.no_accents.gsub(/\n/,' ')
19
19
  if AllPages.site=="BR"
20
20
  ciudad_destino = ciudades.match(/ (a|to|de) (.+) (para|desde|from) (.+)/)[4].strip
21
- else
21
+ elsif AllPages.site=="MX"
22
+ ciudad_destino = ciudades.match(/ (a) (.+) (para|desde|from) (.+)/)[2].strip
23
+ else
22
24
  ciudad_destino = ciudades.match(/ (a|to|de) (.+) (para|desde|from) (.+)/)[2].strip
23
25
  end
24
26
  @page.ciudad_elegida.downcase.should equal(ciudad_destino.downcase) unless @page.ciudad_elegida.match(/Guarullos|Panama|Santiago|Mexico/)
@@ -4,6 +4,7 @@ module Landing
4
4
 
5
5
  include Results::Filters
6
6
  include Results::Matriz::MatrizAerolinea
7
+ include Results::Itineraries::Details
7
8
  include Pages::Tags
8
9
  include Pages::Cookies
9
10
 
@@ -69,6 +70,10 @@ module Landing
69
70
  end
70
71
  end
71
72
 
73
+ def cargar_itinerario(itinerario)
74
+ return LandingCluster.new(tipo_de_busqueda,Hpricot.parse(itinerario.html))
75
+ end
76
+
72
77
  def datos_de_itinerarios
73
78
  @datos_de_itinerarios
74
79
  end
@@ -1,3 +1,3 @@
1
1
  module FlightsGui
2
- VERSION = "2.3.51"
2
+ VERSION = "2.3.52"
3
3
  end
@@ -5311,6 +5311,725 @@ tasks:
5311
5311
  recipients:
5312
5312
  - estebanldh@gmail.com
5313
5313
  - nsimean@despegar.com
5314
+ - name: landing.itinerarios
5315
+ class_name: Henry::Task::CucumberTask
5316
+ options:
5317
+ tags:
5318
+ - landing
5319
+ - itinerarios
5320
+ expand: true
5321
+ no-source: true
5322
+ reports:
5323
+ - format: html
5324
+ name: ${DATE}_${TASK_NAME}.html
5325
+ recipients:
5326
+ - estebanldh@gmail.com
5327
+ - nsimean@despegar.com
5328
+ - name: landing.itinerarios.pt
5329
+ class_name: Henry::Task::CucumberTask
5330
+ options:
5331
+ tags:
5332
+ - landing
5333
+ - itinerarios
5334
+ - pt
5335
+ expand: true
5336
+ no-source: true
5337
+ reports:
5338
+ - format: html
5339
+ name: ${DATE}_${TASK_NAME}.html
5340
+ recipients:
5341
+ - estebanldh@gmail.com
5342
+ - nsimean@despegar.com
5343
+ - name: landing.itinerarios.pt.roundtrip
5344
+ class_name: Henry::Task::CucumberTask
5345
+ options:
5346
+ tags:
5347
+ - landing
5348
+ - itinerarios
5349
+ - pt
5350
+ - roundtrip
5351
+ expand: true
5352
+ no-source: true
5353
+ reports:
5354
+ - format: html
5355
+ name: ${DATE}_${TASK_NAME}.html
5356
+ recipients:
5357
+ - estebanldh@gmail.com
5358
+ - nsimean@despegar.com
5359
+ - name: landing.itinerarios.pt.oneway
5360
+ class_name: Henry::Task::CucumberTask
5361
+ options:
5362
+ tags:
5363
+ - landing
5364
+ - itinerarios
5365
+ - pt
5366
+ - oneway
5367
+ expand: true
5368
+ no-source: true
5369
+ reports:
5370
+ - format: html
5371
+ name: ${DATE}_${TASK_NAME}.html
5372
+ recipients:
5373
+ - estebanldh@gmail.com
5374
+ - nsimean@despegar.com
5375
+ - name: landing.itinerarios.in
5376
+ class_name: Henry::Task::CucumberTask
5377
+ options:
5378
+ tags:
5379
+ - landing
5380
+ - itinerarios
5381
+ - in
5382
+ expand: true
5383
+ no-source: true
5384
+ reports:
5385
+ - format: html
5386
+ name: ${DATE}_${TASK_NAME}.html
5387
+ recipients:
5388
+ - estebanldh@gmail.com
5389
+ - nsimean@despegar.com
5390
+ - name: landing.itinerarios.in.roundtrip
5391
+ class_name: Henry::Task::CucumberTask
5392
+ options:
5393
+ tags:
5394
+ - landing
5395
+ - itinerarios
5396
+ - in
5397
+ - roundtrip
5398
+ expand: true
5399
+ no-source: true
5400
+ reports:
5401
+ - format: html
5402
+ name: ${DATE}_${TASK_NAME}.html
5403
+ recipients:
5404
+ - estebanldh@gmail.com
5405
+ - nsimean@despegar.com
5406
+ - name: landing.itinerarios.in.oneway
5407
+ class_name: Henry::Task::CucumberTask
5408
+ options:
5409
+ tags:
5410
+ - landing
5411
+ - itinerarios
5412
+ - in
5413
+ - oneway
5414
+ expand: true
5415
+ no-source: true
5416
+ reports:
5417
+ - format: html
5418
+ name: ${DATE}_${TASK_NAME}.html
5419
+ recipients:
5420
+ - estebanldh@gmail.com
5421
+ - nsimean@despegar.com
5422
+ - name: landing.itinerarios.cn
5423
+ class_name: Henry::Task::CucumberTask
5424
+ options:
5425
+ tags:
5426
+ - landing
5427
+ - itinerarios
5428
+ - cn
5429
+ expand: true
5430
+ no-source: true
5431
+ reports:
5432
+ - format: html
5433
+ name: ${DATE}_${TASK_NAME}.html
5434
+ recipients:
5435
+ - estebanldh@gmail.com
5436
+ - nsimean@despegar.com
5437
+ - name: landing.itinerarios.cn.roundtrip
5438
+ class_name: Henry::Task::CucumberTask
5439
+ options:
5440
+ tags:
5441
+ - landing
5442
+ - itinerarios
5443
+ - cn
5444
+ - roundtrip
5445
+ expand: true
5446
+ no-source: true
5447
+ reports:
5448
+ - format: html
5449
+ name: ${DATE}_${TASK_NAME}.html
5450
+ recipients:
5451
+ - estebanldh@gmail.com
5452
+ - nsimean@despegar.com
5453
+ - name: landing.itinerarios.cn.oneway
5454
+ class_name: Henry::Task::CucumberTask
5455
+ options:
5456
+ tags:
5457
+ - landing
5458
+ - itinerarios
5459
+ - cn
5460
+ - oneway
5461
+ expand: true
5462
+ no-source: true
5463
+ reports:
5464
+ - format: html
5465
+ name: ${DATE}_${TASK_NAME}.html
5466
+ recipients:
5467
+ - estebanldh@gmail.com
5468
+ - nsimean@despegar.com
5469
+ - name: landing.itinerarios.ar
5470
+ class_name: Henry::Task::CucumberTask
5471
+ options:
5472
+ tags:
5473
+ - landing
5474
+ - itinerarios
5475
+ - ar
5476
+ expand: true
5477
+ no-source: true
5478
+ reports:
5479
+ - format: html
5480
+ name: ${DATE}_${TASK_NAME}.html
5481
+ recipients:
5482
+ - estebanldh@gmail.com
5483
+ - nsimean@despegar.com
5484
+ - name: landing.itinerarios.ar.roundtrip
5485
+ class_name: Henry::Task::CucumberTask
5486
+ options:
5487
+ tags:
5488
+ - landing
5489
+ - itinerarios
5490
+ - ar
5491
+ - roundtrip
5492
+ expand: true
5493
+ no-source: true
5494
+ reports:
5495
+ - format: html
5496
+ name: ${DATE}_${TASK_NAME}.html
5497
+ recipients:
5498
+ - estebanldh@gmail.com
5499
+ - nsimean@despegar.com
5500
+ - name: landing.itinerarios.ar.oneway
5501
+ class_name: Henry::Task::CucumberTask
5502
+ options:
5503
+ tags:
5504
+ - landing
5505
+ - itinerarios
5506
+ - ar
5507
+ - oneway
5508
+ expand: true
5509
+ no-source: true
5510
+ reports:
5511
+ - format: html
5512
+ name: ${DATE}_${TASK_NAME}.html
5513
+ recipients:
5514
+ - estebanldh@gmail.com
5515
+ - nsimean@despegar.com
5516
+ - name: landing.itinerarios.br
5517
+ class_name: Henry::Task::CucumberTask
5518
+ options:
5519
+ tags:
5520
+ - landing
5521
+ - itinerarios
5522
+ - br
5523
+ expand: true
5524
+ no-source: true
5525
+ reports:
5526
+ - format: html
5527
+ name: ${DATE}_${TASK_NAME}.html
5528
+ recipients:
5529
+ - estebanldh@gmail.com
5530
+ - nsimean@despegar.com
5531
+ - name: landing.itinerarios.br.roundtrip
5532
+ class_name: Henry::Task::CucumberTask
5533
+ options:
5534
+ tags:
5535
+ - landing
5536
+ - itinerarios
5537
+ - br
5538
+ - roundtrip
5539
+ expand: true
5540
+ no-source: true
5541
+ reports:
5542
+ - format: html
5543
+ name: ${DATE}_${TASK_NAME}.html
5544
+ recipients:
5545
+ - estebanldh@gmail.com
5546
+ - nsimean@despegar.com
5547
+ - name: landing.itinerarios.br.oneway
5548
+ class_name: Henry::Task::CucumberTask
5549
+ options:
5550
+ tags:
5551
+ - landing
5552
+ - itinerarios
5553
+ - br
5554
+ - oneway
5555
+ expand: true
5556
+ no-source: true
5557
+ reports:
5558
+ - format: html
5559
+ name: ${DATE}_${TASK_NAME}.html
5560
+ recipients:
5561
+ - estebanldh@gmail.com
5562
+ - nsimean@despegar.com
5563
+ - name: landing.itinerarios.co
5564
+ class_name: Henry::Task::CucumberTask
5565
+ options:
5566
+ tags:
5567
+ - landing
5568
+ - itinerarios
5569
+ - co
5570
+ expand: true
5571
+ no-source: true
5572
+ reports:
5573
+ - format: html
5574
+ name: ${DATE}_${TASK_NAME}.html
5575
+ recipients:
5576
+ - estebanldh@gmail.com
5577
+ - nsimean@despegar.com
5578
+ - name: landing.itinerarios.co.roundtrip
5579
+ class_name: Henry::Task::CucumberTask
5580
+ options:
5581
+ tags:
5582
+ - landing
5583
+ - itinerarios
5584
+ - co
5585
+ - roundtrip
5586
+ expand: true
5587
+ no-source: true
5588
+ reports:
5589
+ - format: html
5590
+ name: ${DATE}_${TASK_NAME}.html
5591
+ recipients:
5592
+ - estebanldh@gmail.com
5593
+ - nsimean@despegar.com
5594
+ - name: landing.itinerarios.co.oneway
5595
+ class_name: Henry::Task::CucumberTask
5596
+ options:
5597
+ tags:
5598
+ - landing
5599
+ - itinerarios
5600
+ - co
5601
+ - oneway
5602
+ expand: true
5603
+ no-source: true
5604
+ reports:
5605
+ - format: html
5606
+ name: ${DATE}_${TASK_NAME}.html
5607
+ recipients:
5608
+ - estebanldh@gmail.com
5609
+ - nsimean@despegar.com
5610
+ - name: landing.itinerarios.cl
5611
+ class_name: Henry::Task::CucumberTask
5612
+ options:
5613
+ tags:
5614
+ - landing
5615
+ - itinerarios
5616
+ - cl
5617
+ expand: true
5618
+ no-source: true
5619
+ reports:
5620
+ - format: html
5621
+ name: ${DATE}_${TASK_NAME}.html
5622
+ recipients:
5623
+ - estebanldh@gmail.com
5624
+ - nsimean@despegar.com
5625
+ - name: landing.itinerarios.cl.roundtrip
5626
+ class_name: Henry::Task::CucumberTask
5627
+ options:
5628
+ tags:
5629
+ - landing
5630
+ - itinerarios
5631
+ - cl
5632
+ - roundtrip
5633
+ expand: true
5634
+ no-source: true
5635
+ reports:
5636
+ - format: html
5637
+ name: ${DATE}_${TASK_NAME}.html
5638
+ recipients:
5639
+ - estebanldh@gmail.com
5640
+ - nsimean@despegar.com
5641
+ - name: landing.itinerarios.cl.oneway
5642
+ class_name: Henry::Task::CucumberTask
5643
+ options:
5644
+ tags:
5645
+ - landing
5646
+ - itinerarios
5647
+ - cl
5648
+ - oneway
5649
+ expand: true
5650
+ no-source: true
5651
+ reports:
5652
+ - format: html
5653
+ name: ${DATE}_${TASK_NAME}.html
5654
+ recipients:
5655
+ - estebanldh@gmail.com
5656
+ - nsimean@despegar.com
5657
+ - name: landing.itinerarios.cr
5658
+ class_name: Henry::Task::CucumberTask
5659
+ options:
5660
+ tags:
5661
+ - landing
5662
+ - itinerarios
5663
+ - cr
5664
+ expand: true
5665
+ no-source: true
5666
+ reports:
5667
+ - format: html
5668
+ name: ${DATE}_${TASK_NAME}.html
5669
+ recipients:
5670
+ - estebanldh@gmail.com
5671
+ - nsimean@despegar.com
5672
+ - name: landing.itinerarios.cr.roundtrip
5673
+ class_name: Henry::Task::CucumberTask
5674
+ options:
5675
+ tags:
5676
+ - landing
5677
+ - itinerarios
5678
+ - cr
5679
+ - roundtrip
5680
+ expand: true
5681
+ no-source: true
5682
+ reports:
5683
+ - format: html
5684
+ name: ${DATE}_${TASK_NAME}.html
5685
+ recipients:
5686
+ - estebanldh@gmail.com
5687
+ - nsimean@despegar.com
5688
+ - name: landing.itinerarios.cr.oneway
5689
+ class_name: Henry::Task::CucumberTask
5690
+ options:
5691
+ tags:
5692
+ - landing
5693
+ - itinerarios
5694
+ - cr
5695
+ - oneway
5696
+ expand: true
5697
+ no-source: true
5698
+ reports:
5699
+ - format: html
5700
+ name: ${DATE}_${TASK_NAME}.html
5701
+ recipients:
5702
+ - estebanldh@gmail.com
5703
+ - nsimean@despegar.com
5704
+ - name: landing.itinerarios.ec
5705
+ class_name: Henry::Task::CucumberTask
5706
+ options:
5707
+ tags:
5708
+ - landing
5709
+ - itinerarios
5710
+ - ec
5711
+ expand: true
5712
+ no-source: true
5713
+ reports:
5714
+ - format: html
5715
+ name: ${DATE}_${TASK_NAME}.html
5716
+ recipients:
5717
+ - estebanldh@gmail.com
5718
+ - nsimean@despegar.com
5719
+ - name: landing.itinerarios.ec.roundtrip
5720
+ class_name: Henry::Task::CucumberTask
5721
+ options:
5722
+ tags:
5723
+ - landing
5724
+ - itinerarios
5725
+ - ec
5726
+ - roundtrip
5727
+ expand: true
5728
+ no-source: true
5729
+ reports:
5730
+ - format: html
5731
+ name: ${DATE}_${TASK_NAME}.html
5732
+ recipients:
5733
+ - estebanldh@gmail.com
5734
+ - nsimean@despegar.com
5735
+ - name: landing.itinerarios.ec.oneway
5736
+ class_name: Henry::Task::CucumberTask
5737
+ options:
5738
+ tags:
5739
+ - landing
5740
+ - itinerarios
5741
+ - ec
5742
+ - oneway
5743
+ expand: true
5744
+ no-source: true
5745
+ reports:
5746
+ - format: html
5747
+ name: ${DATE}_${TASK_NAME}.html
5748
+ recipients:
5749
+ - estebanldh@gmail.com
5750
+ - nsimean@despegar.com
5751
+ - name: landing.itinerarios.mx
5752
+ class_name: Henry::Task::CucumberTask
5753
+ options:
5754
+ tags:
5755
+ - landing
5756
+ - itinerarios
5757
+ - mx
5758
+ expand: true
5759
+ no-source: true
5760
+ reports:
5761
+ - format: html
5762
+ name: ${DATE}_${TASK_NAME}.html
5763
+ recipients:
5764
+ - estebanldh@gmail.com
5765
+ - nsimean@despegar.com
5766
+ - name: landing.itinerarios.mx.roundtrip
5767
+ class_name: Henry::Task::CucumberTask
5768
+ options:
5769
+ tags:
5770
+ - landing
5771
+ - itinerarios
5772
+ - mx
5773
+ - roundtrip
5774
+ expand: true
5775
+ no-source: true
5776
+ reports:
5777
+ - format: html
5778
+ name: ${DATE}_${TASK_NAME}.html
5779
+ recipients:
5780
+ - estebanldh@gmail.com
5781
+ - nsimean@despegar.com
5782
+ - name: landing.itinerarios.mx.oneway
5783
+ class_name: Henry::Task::CucumberTask
5784
+ options:
5785
+ tags:
5786
+ - landing
5787
+ - itinerarios
5788
+ - mx
5789
+ - oneway
5790
+ expand: true
5791
+ no-source: true
5792
+ reports:
5793
+ - format: html
5794
+ name: ${DATE}_${TASK_NAME}.html
5795
+ recipients:
5796
+ - estebanldh@gmail.com
5797
+ - nsimean@despegar.com
5798
+ - name: landing.itinerarios.pa
5799
+ class_name: Henry::Task::CucumberTask
5800
+ options:
5801
+ tags:
5802
+ - landing
5803
+ - itinerarios
5804
+ - pa
5805
+ expand: true
5806
+ no-source: true
5807
+ reports:
5808
+ - format: html
5809
+ name: ${DATE}_${TASK_NAME}.html
5810
+ recipients:
5811
+ - estebanldh@gmail.com
5812
+ - nsimean@despegar.com
5813
+ - name: landing.itinerarios.pa.roundtrip
5814
+ class_name: Henry::Task::CucumberTask
5815
+ options:
5816
+ tags:
5817
+ - landing
5818
+ - itinerarios
5819
+ - pa
5820
+ - roundtrip
5821
+ expand: true
5822
+ no-source: true
5823
+ reports:
5824
+ - format: html
5825
+ name: ${DATE}_${TASK_NAME}.html
5826
+ recipients:
5827
+ - estebanldh@gmail.com
5828
+ - nsimean@despegar.com
5829
+ - name: landing.itinerarios.pa.oneway
5830
+ class_name: Henry::Task::CucumberTask
5831
+ options:
5832
+ tags:
5833
+ - landing
5834
+ - itinerarios
5835
+ - pa
5836
+ - oneway
5837
+ expand: true
5838
+ no-source: true
5839
+ reports:
5840
+ - format: html
5841
+ name: ${DATE}_${TASK_NAME}.html
5842
+ recipients:
5843
+ - estebanldh@gmail.com
5844
+ - nsimean@despegar.com
5845
+ - name: landing.itinerarios.pe
5846
+ class_name: Henry::Task::CucumberTask
5847
+ options:
5848
+ tags:
5849
+ - landing
5850
+ - itinerarios
5851
+ - pe
5852
+ expand: true
5853
+ no-source: true
5854
+ reports:
5855
+ - format: html
5856
+ name: ${DATE}_${TASK_NAME}.html
5857
+ recipients:
5858
+ - estebanldh@gmail.com
5859
+ - nsimean@despegar.com
5860
+ - name: landing.itinerarios.pe.roundtrip
5861
+ class_name: Henry::Task::CucumberTask
5862
+ options:
5863
+ tags:
5864
+ - landing
5865
+ - itinerarios
5866
+ - pe
5867
+ - roundtrip
5868
+ expand: true
5869
+ no-source: true
5870
+ reports:
5871
+ - format: html
5872
+ name: ${DATE}_${TASK_NAME}.html
5873
+ recipients:
5874
+ - estebanldh@gmail.com
5875
+ - nsimean@despegar.com
5876
+ - name: landing.itinerarios.pe.oneway
5877
+ class_name: Henry::Task::CucumberTask
5878
+ options:
5879
+ tags:
5880
+ - landing
5881
+ - itinerarios
5882
+ - pe
5883
+ - oneway
5884
+ expand: true
5885
+ no-source: true
5886
+ reports:
5887
+ - format: html
5888
+ name: ${DATE}_${TASK_NAME}.html
5889
+ recipients:
5890
+ - estebanldh@gmail.com
5891
+ - nsimean@despegar.com
5892
+ - name: landing.itinerarios.us
5893
+ class_name: Henry::Task::CucumberTask
5894
+ options:
5895
+ tags:
5896
+ - landing
5897
+ - itinerarios
5898
+ - us
5899
+ expand: true
5900
+ no-source: true
5901
+ reports:
5902
+ - format: html
5903
+ name: ${DATE}_${TASK_NAME}.html
5904
+ recipients:
5905
+ - estebanldh@gmail.com
5906
+ - nsimean@despegar.com
5907
+ - name: landing.itinerarios.us.roundtrip
5908
+ class_name: Henry::Task::CucumberTask
5909
+ options:
5910
+ tags:
5911
+ - landing
5912
+ - itinerarios
5913
+ - us
5914
+ - roundtrip
5915
+ expand: true
5916
+ no-source: true
5917
+ reports:
5918
+ - format: html
5919
+ name: ${DATE}_${TASK_NAME}.html
5920
+ recipients:
5921
+ - estebanldh@gmail.com
5922
+ - nsimean@despegar.com
5923
+ - name: landing.itinerarios.us.oneway
5924
+ class_name: Henry::Task::CucumberTask
5925
+ options:
5926
+ tags:
5927
+ - landing
5928
+ - itinerarios
5929
+ - us
5930
+ - oneway
5931
+ expand: true
5932
+ no-source: true
5933
+ reports:
5934
+ - format: html
5935
+ name: ${DATE}_${TASK_NAME}.html
5936
+ recipients:
5937
+ - estebanldh@gmail.com
5938
+ - nsimean@despegar.com
5939
+ - name: landing.itinerarios.uy
5940
+ class_name: Henry::Task::CucumberTask
5941
+ options:
5942
+ tags:
5943
+ - landing
5944
+ - itinerarios
5945
+ - uy
5946
+ expand: true
5947
+ no-source: true
5948
+ reports:
5949
+ - format: html
5950
+ name: ${DATE}_${TASK_NAME}.html
5951
+ recipients:
5952
+ - estebanldh@gmail.com
5953
+ - nsimean@despegar.com
5954
+ - name: landing.itinerarios.uy.roundtrip
5955
+ class_name: Henry::Task::CucumberTask
5956
+ options:
5957
+ tags:
5958
+ - landing
5959
+ - itinerarios
5960
+ - uy
5961
+ - roundtrip
5962
+ expand: true
5963
+ no-source: true
5964
+ reports:
5965
+ - format: html
5966
+ name: ${DATE}_${TASK_NAME}.html
5967
+ recipients:
5968
+ - estebanldh@gmail.com
5969
+ - nsimean@despegar.com
5970
+ - name: landing.itinerarios.uy.oneway
5971
+ class_name: Henry::Task::CucumberTask
5972
+ options:
5973
+ tags:
5974
+ - landing
5975
+ - itinerarios
5976
+ - uy
5977
+ - oneway
5978
+ expand: true
5979
+ no-source: true
5980
+ reports:
5981
+ - format: html
5982
+ name: ${DATE}_${TASK_NAME}.html
5983
+ recipients:
5984
+ - estebanldh@gmail.com
5985
+ - nsimean@despegar.com
5986
+ - name: landing.itinerarios.ve
5987
+ class_name: Henry::Task::CucumberTask
5988
+ options:
5989
+ tags:
5990
+ - landing
5991
+ - itinerarios
5992
+ - ve
5993
+ expand: true
5994
+ no-source: true
5995
+ reports:
5996
+ - format: html
5997
+ name: ${DATE}_${TASK_NAME}.html
5998
+ recipients:
5999
+ - estebanldh@gmail.com
6000
+ - nsimean@despegar.com
6001
+ - name: landing.itinerarios.ve.roundtrip
6002
+ class_name: Henry::Task::CucumberTask
6003
+ options:
6004
+ tags:
6005
+ - landing
6006
+ - itinerarios
6007
+ - ve
6008
+ - roundtrip
6009
+ expand: true
6010
+ no-source: true
6011
+ reports:
6012
+ - format: html
6013
+ name: ${DATE}_${TASK_NAME}.html
6014
+ recipients:
6015
+ - estebanldh@gmail.com
6016
+ - nsimean@despegar.com
6017
+ - name: landing.itinerarios.ve.oneway
6018
+ class_name: Henry::Task::CucumberTask
6019
+ options:
6020
+ tags:
6021
+ - landing
6022
+ - itinerarios
6023
+ - ve
6024
+ - oneway
6025
+ expand: true
6026
+ no-source: true
6027
+ reports:
6028
+ - format: html
6029
+ name: ${DATE}_${TASK_NAME}.html
6030
+ recipients:
6031
+ - estebanldh@gmail.com
6032
+ - nsimean@despegar.com
5314
6033
  - name: landing.search
5315
6034
  class_name: Henry::Task::CucumberTask
5316
6035
  options:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flights_gui_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.51
4
+ version: 2.3.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez