flights_gui_tests 0.1.9 → 0.2.0

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: e8b8ee95b912f2e0576f3c605842d79d19f89622
4
- data.tar.gz: bb562198394ab42e7c4938b202e4c89049e2eae1
3
+ metadata.gz: 657a364893868d6a770a7e2ea8ef422e184dbed7
4
+ data.tar.gz: af4c6374877f5e502b4d58715006420481ce6429
5
5
  SHA512:
6
- metadata.gz: 4f1ea2397e35bf0e008a8d4205adcdbf21755379c8bdc71a89153eaf41ad0cbdce2fad5eee4fb1c1ddd1d978e613c3ae0c0d9b4a3acbfc5926cf13482c90694d
7
- data.tar.gz: bd23b4c2962ae2cef1a4cc7e645c50ffb61cd02f8c1bd802585f0ee733e972b5ab9e2af1cc07040ce67e3a851d66aa05abc1ad3cff2523e9e9236a97e96c963e
6
+ metadata.gz: da1117a3f27dcaaa16ec4dc5eb11ded10c7bf9f3a2f64ff45a1bdd8662296dc173e5c603d9d22dd6e3c33bf547cc4f1a5d41190fc3912eb7b3fd77b72c063cf9
7
+ data.tar.gz: 74bc3f77522518302314dbd0a5f7e27410afb3c9f462b939cc20e4093e22d3aaeab2b9a9eac66915d7ea8ae39bfb54779a9b45597ba273c43441555ea6693ea0
@@ -6,6 +6,7 @@ Cuando(/^me logueo como usuario "(.*?)" y pass "(.*?)"$/) do |arg1, arg2|
6
6
  step "espero que termine de cargar la pagina de checkout"
7
7
  step "verifico que ingrese al checkout"
8
8
  end
9
+ @page.log_in_checkout_element.when_visible(timeout=10)
9
10
  @page.log_in_checkout_element.click
10
11
  step "me logueo con usuario \"#{arg1}\" y pass \"#{arg2}\""
11
12
  end
@@ -13,6 +13,23 @@ Cuando(/^ingreso a la pagina de checkout de agencia en "(.*?)" para una busqueda
13
13
  @page.elegir_idioma
14
14
  end
15
15
 
16
+ # encoding: utf-8
17
+ Cuando(/^ingreso a un checkout directo en "(.*?)" para una busqueda "(.*?)" del tipo "(.*?)"$/) do |arg1, arg2, arg3|
18
+ Helpers.set_date_language(arg1)
19
+ @page = Checkout::CheckoutPage.new($browser)
20
+ begin
21
+ @page.load_page(arg2,arg1,$ENV,arg3)
22
+ rescue
23
+ pending("No se encontraron resultados para la busqueda #{@page.manage_data.generate_url_results_search}")
24
+ end
25
+ @page.ir(@page.manage_data.generate_url_checkout)
26
+ sleep(1)
27
+ @page.set_cookies
28
+ puts "URL: #{@page.manage_data.generate_url_checkout}"
29
+ puts "UOW: #{@page.uow}"
30
+ @page.elegir_idioma
31
+ end
32
+
16
33
  Cuando(/^espero que termine de cargar la pagina de checkout$/) do
17
34
  @page = Checkout::CheckoutPage.new($browser)
18
35
  @page.popup_transicion_inicial_element.when_not_visible(timeout=120)
@@ -100,6 +100,7 @@ module Checkout
100
100
  end
101
101
 
102
102
  def cargar_datos_tarjeta_nuevo_formulario
103
+ sleep(1)
103
104
  data = self.manage_data.get_results_search_service
104
105
  provider = data["result"]["data"]["items"][0]["provider"]
105
106
  select_un_pago_visa
@@ -0,0 +1,193 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.compatibility
4
+ EL test verifica que la pagina del checkout sea compatible entre beta y produccion
5
+
6
+ @compatibility
7
+ Esquema del escenario: Se ingresa a la pagina de checkout.
8
+ Cuando ingreso a un checkout directo en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando espero que termine de cargar la pagina de checkout
10
+ Entonces verifico que ingrese al checkout
11
+ Y verifico que la pagina no rompa
12
+ Y verifico si no trae errores
13
+
14
+ @ar
15
+ @roundtrip
16
+ Ejemplos:
17
+ |pais|tipo|cabotage|
18
+ |AR |roundtrip|nil|
19
+ @ar
20
+ @oneway
21
+ Ejemplos:
22
+ |pais|tipo|cabotage|
23
+ |AR |oneway|true|
24
+ @ar
25
+ @multipledestinations
26
+ Ejemplos:
27
+ |pais|tipo|cabotage|
28
+ |AR |multipledestinations|nil|
29
+ @br
30
+ @roundtrip
31
+ Ejemplos:
32
+ |pais|tipo|cabotage|
33
+ |BR |roundtrip|nil|
34
+ @br
35
+ @oneway
36
+ Ejemplos:
37
+ |pais|tipo|cabotage|
38
+ |BR |oneway|true|
39
+ @br
40
+ @multipledestinations
41
+ Ejemplos:
42
+ |pais|tipo|cabotage|
43
+ |BR |multipledestinations|nil|
44
+ @co
45
+ @roundtrip
46
+ Ejemplos:
47
+ |pais|tipo|cabotage|
48
+ |CO |roundtrip|nil|
49
+ @co
50
+ @oneway
51
+ Ejemplos:
52
+ |pais|tipo|cabotage|
53
+ |CO |oneway|nil|
54
+ @co
55
+ @multipledestinations
56
+ Ejemplos:
57
+ |pais|tipo|cabotage|
58
+ |CO |multipledestinations|nil|
59
+ @cl
60
+ @roundtrip
61
+ Ejemplos:
62
+ |pais|tipo|cabotage|
63
+ |CL |roundtrip|nil|
64
+ @cl
65
+ @oneway
66
+ Ejemplos:
67
+ |pais|tipo|cabotage|
68
+ |CL |oneway|nil|
69
+ @cl
70
+ @multipledestinations
71
+ Ejemplos:
72
+ |pais|tipo|cabotage|
73
+ |CL |multipledestinations|nil|
74
+ @cr
75
+ @roundtrip
76
+ Ejemplos:
77
+ |pais|tipo|cabotage|
78
+ |CR |roundtrip|nil|
79
+ @cr
80
+ @oneway
81
+ Ejemplos:
82
+ |pais|tipo|cabotage|
83
+ |CR |oneway|nil|
84
+ @cr
85
+ @multipledestinations
86
+ Ejemplos:
87
+ |pais|tipo|cabotage|
88
+ |CR |multipledestinations|nil|
89
+ @ec
90
+ @roundtrip
91
+ Ejemplos:
92
+ |pais|tipo|cabotage|
93
+ |EC |roundtrip|nil|
94
+ @ec
95
+ @oneway
96
+ Ejemplos:
97
+ |pais|tipo|cabotage|
98
+ |EC |oneway|nil|
99
+ @ec
100
+ @multipledestinations
101
+ Ejemplos:
102
+ |pais|tipo|cabotage|
103
+ |EC |multipledestinations|nil|
104
+ @mx
105
+ @roundtrip
106
+ Ejemplos:
107
+ |pais|tipo|cabotage|
108
+ |MX |roundtrip|nil|
109
+ @mx
110
+ @oneway
111
+ Ejemplos:
112
+ |pais|tipo|cabotage|
113
+ |MX |oneway|nil|
114
+ @mx
115
+ @multipledestinations
116
+ Ejemplos:
117
+ |pais|tipo|cabotage|
118
+ |MX |multipledestinations|nil|
119
+ @pa
120
+ @roundtrip
121
+ Ejemplos:
122
+ |pais|tipo|cabotage|
123
+ |PA |roundtrip|nil|
124
+ @pa
125
+ @oneway
126
+ Ejemplos:
127
+ |pais|tipo|cabotage|
128
+ |PA |oneway|nil|
129
+ @pa
130
+ @multipledestinations
131
+ Ejemplos:
132
+ |pais|tipo|cabotage|
133
+ |PA |multipledestinations|nil|
134
+ @pe
135
+ @roundtrip
136
+ Ejemplos:
137
+ |pais|tipo|cabotage|
138
+ |PE |roundtrip|nil|
139
+ @pe
140
+ @oneway
141
+ Ejemplos:
142
+ |pais|tipo|cabotage|
143
+ |PE |oneway|nil|
144
+ @pe
145
+ @multipledestinations
146
+ Ejemplos:
147
+ |pais|tipo|cabotage|
148
+ |PE |multipledestinations|nil|
149
+ @us
150
+ @roundtrip
151
+ Ejemplos:
152
+ |pais|tipo|cabotage|
153
+ |US |roundtrip|nil|
154
+ @us
155
+ @oneway
156
+ Ejemplos:
157
+ |pais|tipo|cabotage|
158
+ |US |oneway|nil|
159
+ @us
160
+ @multipledestinations
161
+ Ejemplos:
162
+ |pais|tipo|cabotage|
163
+ |US |multipledestinations|nil|
164
+ @uy
165
+ @roundtrip
166
+ Ejemplos:
167
+ |pais|tipo|cabotage|
168
+ |UY |roundtrip|nil|
169
+ @uy
170
+ @oneway
171
+ Ejemplos:
172
+ |pais|tipo|cabotage|
173
+ |UY |oneway|nil|
174
+ @uy
175
+ @multipledestinations
176
+ Ejemplos:
177
+ |pais|tipo|cabotage|
178
+ |UY |multipledestinations|nil|
179
+ @ve
180
+ @roundtrip
181
+ Ejemplos:
182
+ |pais|tipo|cabotage|
183
+ |VE |roundtrip|nil|
184
+ @ve
185
+ @oneway
186
+ Ejemplos:
187
+ |pais|tipo|cabotage|
188
+ |VE |oneway|nil|
189
+ @ve
190
+ @multipledestinations
191
+ Ejemplos:
192
+ |pais|tipo|cabotage|
193
+ |VE |multipledestinations|nil|
@@ -14,6 +14,7 @@ Característica: checkout.fast_checkout
14
14
  Y espero que termine de cargar la pagina de checkout
15
15
  Y verifico que ingrese al checkout
16
16
  Cuando me logueo como usuario "bookingvuelos@despegar.com" y pass "despegar"
17
+ Y espero que termine de cargar la pagina de checkout
17
18
  Cuando verifico que ingrese al checkout
18
19
  Entonces verifico que se haya logueado correctamente
19
20
  Y valido los valores del desglose del checkout
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
 
15
15
  gem.require_paths = ["lib"] # Usualmente es solo lib -> ["lib"]
16
16
 
17
- gem.version = '0.1.9' # La version se debe incrementar cada vez que se desea publicar una nueva version del test.
17
+ gem.version = '0.2.0' # La version se debe incrementar cada vez que se desea publicar una nueva version del test.
18
18
 
19
19
  gem.add_dependency('henry-container', '>= 0.1.39')
20
20
  gem.add_dependency('page-object')
@@ -25,7 +25,7 @@ Gem::Specification.new do |gem|
25
25
  gem.add_dependency('httparty')
26
26
  gem.add_dependency('sixarm_ruby_unaccent')
27
27
  gem.add_dependency('sanitize')
28
- gem.add_dependency('mock_search', '>= 0.28.1')
28
+ gem.add_dependency('mock_search', '>= 1.0.0')
29
29
  gem.add_dependency('byebug')
30
30
 
31
31
  gem.add_development_dependency('geminabox')
data/henry-context.yml CHANGED
@@ -9618,13 +9618,13 @@ tasks:
9618
9618
  recipients:
9619
9619
  - estebanldh@gmail.com
9620
9620
  - nsimean@despegar.com
9621
- - name: checkout.error_messages.br
9621
+ - name: checkout.error_messages.us
9622
9622
  class_name: Henry::Task::CucumberTask
9623
9623
  options:
9624
9624
  tags:
9625
9625
  - checkout
9626
9626
  - error_messages
9627
- - br
9627
+ - us
9628
9628
  expand: true
9629
9629
  no-source: true
9630
9630
  reports:
@@ -9633,13 +9633,13 @@ tasks:
9633
9633
  recipients:
9634
9634
  - estebanldh@gmail.com
9635
9635
  - nsimean@despegar.com
9636
- - name: checkout.error_messages.br.roundtrip
9636
+ - name: checkout.error_messages.us.roundtrip
9637
9637
  class_name: Henry::Task::CucumberTask
9638
9638
  options:
9639
9639
  tags:
9640
9640
  - checkout
9641
9641
  - error_messages
9642
- - br
9642
+ - us
9643
9643
  - roundtrip
9644
9644
  expand: true
9645
9645
  no-source: true
@@ -9649,13 +9649,13 @@ tasks:
9649
9649
  recipients:
9650
9650
  - estebanldh@gmail.com
9651
9651
  - nsimean@despegar.com
9652
- - name: checkout.error_messages.br.oneway
9652
+ - name: checkout.error_messages.us.oneway
9653
9653
  class_name: Henry::Task::CucumberTask
9654
9654
  options:
9655
9655
  tags:
9656
9656
  - checkout
9657
9657
  - error_messages
9658
- - br
9658
+ - us
9659
9659
  - oneway
9660
9660
  expand: true
9661
9661
  no-source: true
@@ -9665,13 +9665,14 @@ tasks:
9665
9665
  recipients:
9666
9666
  - estebanldh@gmail.com
9667
9667
  - nsimean@despegar.com
9668
- - name: checkout.error_messages.ve
9668
+ - name: checkout.error_messages.us.multipledestinations
9669
9669
  class_name: Henry::Task::CucumberTask
9670
9670
  options:
9671
9671
  tags:
9672
9672
  - checkout
9673
9673
  - error_messages
9674
- - ve
9674
+ - us
9675
+ - multipledestinations
9675
9676
  expand: true
9676
9677
  no-source: true
9677
9678
  reports:
@@ -9680,14 +9681,13 @@ tasks:
9680
9681
  recipients:
9681
9682
  - estebanldh@gmail.com
9682
9683
  - nsimean@despegar.com
9683
- - name: checkout.error_messages.ve.roundtrip
9684
+ - name: checkout.error_messages.ve
9684
9685
  class_name: Henry::Task::CucumberTask
9685
9686
  options:
9686
9687
  tags:
9687
9688
  - checkout
9688
9689
  - error_messages
9689
9690
  - ve
9690
- - roundtrip
9691
9691
  expand: true
9692
9692
  no-source: true
9693
9693
  reports:
@@ -9696,14 +9696,14 @@ tasks:
9696
9696
  recipients:
9697
9697
  - estebanldh@gmail.com
9698
9698
  - nsimean@despegar.com
9699
- - name: checkout.error_messages.ve.oneway
9699
+ - name: checkout.error_messages.ve.roundtrip
9700
9700
  class_name: Henry::Task::CucumberTask
9701
9701
  options:
9702
9702
  tags:
9703
9703
  - checkout
9704
9704
  - error_messages
9705
9705
  - ve
9706
- - oneway
9706
+ - roundtrip
9707
9707
  expand: true
9708
9708
  no-source: true
9709
9709
  reports:
@@ -9712,14 +9712,14 @@ tasks:
9712
9712
  recipients:
9713
9713
  - estebanldh@gmail.com
9714
9714
  - nsimean@despegar.com
9715
- - name: checkout.error_messages.ve.multipledestinations
9715
+ - name: checkout.error_messages.ve.oneway
9716
9716
  class_name: Henry::Task::CucumberTask
9717
9717
  options:
9718
9718
  tags:
9719
9719
  - checkout
9720
9720
  - error_messages
9721
9721
  - ve
9722
- - multipledestinations
9722
+ - oneway
9723
9723
  expand: true
9724
9724
  no-source: true
9725
9725
  reports:
@@ -9728,13 +9728,14 @@ tasks:
9728
9728
  recipients:
9729
9729
  - estebanldh@gmail.com
9730
9730
  - nsimean@despegar.com
9731
- - name: checkout.error_messages.us
9731
+ - name: checkout.error_messages.ve.multipledestinations
9732
9732
  class_name: Henry::Task::CucumberTask
9733
9733
  options:
9734
9734
  tags:
9735
9735
  - checkout
9736
9736
  - error_messages
9737
- - us
9737
+ - ve
9738
+ - multipledestinations
9738
9739
  expand: true
9739
9740
  no-source: true
9740
9741
  reports:
@@ -9743,14 +9744,13 @@ tasks:
9743
9744
  recipients:
9744
9745
  - estebanldh@gmail.com
9745
9746
  - nsimean@despegar.com
9746
- - name: checkout.error_messages.us.roundtrip
9747
+ - name: checkout.error_messages.br
9747
9748
  class_name: Henry::Task::CucumberTask
9748
9749
  options:
9749
9750
  tags:
9750
9751
  - checkout
9751
9752
  - error_messages
9752
- - us
9753
- - roundtrip
9753
+ - br
9754
9754
  expand: true
9755
9755
  no-source: true
9756
9756
  reports:
@@ -9759,14 +9759,14 @@ tasks:
9759
9759
  recipients:
9760
9760
  - estebanldh@gmail.com
9761
9761
  - nsimean@despegar.com
9762
- - name: checkout.error_messages.us.oneway
9762
+ - name: checkout.error_messages.br.roundtrip
9763
9763
  class_name: Henry::Task::CucumberTask
9764
9764
  options:
9765
9765
  tags:
9766
9766
  - checkout
9767
9767
  - error_messages
9768
- - us
9769
- - oneway
9768
+ - br
9769
+ - roundtrip
9770
9770
  expand: true
9771
9771
  no-source: true
9772
9772
  reports:
@@ -9775,14 +9775,14 @@ tasks:
9775
9775
  recipients:
9776
9776
  - estebanldh@gmail.com
9777
9777
  - nsimean@despegar.com
9778
- - name: checkout.error_messages.us.multipledestinations
9778
+ - name: checkout.error_messages.br.oneway
9779
9779
  class_name: Henry::Task::CucumberTask
9780
9780
  options:
9781
9781
  tags:
9782
9782
  - checkout
9783
9783
  - error_messages
9784
- - us
9785
- - multipledestinations
9784
+ - br
9785
+ - oneway
9786
9786
  expand: true
9787
9787
  no-source: true
9788
9788
  reports:
@@ -11460,6 +11460,776 @@ tasks:
11460
11460
  recipients:
11461
11461
  - estebanldh@gmail.com
11462
11462
  - nsimean@despegar.com
11463
+ - name: checkout.compatibility
11464
+ class_name: Henry::Task::CucumberTask
11465
+ options:
11466
+ tags:
11467
+ - checkout
11468
+ - compatibility
11469
+ expand: true
11470
+ no-source: true
11471
+ reports:
11472
+ - format: html
11473
+ name: ${DATE}_${TASK_NAME}.html
11474
+ recipients:
11475
+ - estebanldh@gmail.com
11476
+ - nsimean@despegar.com
11477
+ - name: checkout.compatibility.ar
11478
+ class_name: Henry::Task::CucumberTask
11479
+ options:
11480
+ tags:
11481
+ - checkout
11482
+ - compatibility
11483
+ - ar
11484
+ expand: true
11485
+ no-source: true
11486
+ reports:
11487
+ - format: html
11488
+ name: ${DATE}_${TASK_NAME}.html
11489
+ recipients:
11490
+ - estebanldh@gmail.com
11491
+ - nsimean@despegar.com
11492
+ - name: checkout.compatibility.ar.roundtrip
11493
+ class_name: Henry::Task::CucumberTask
11494
+ options:
11495
+ tags:
11496
+ - checkout
11497
+ - compatibility
11498
+ - ar
11499
+ - roundtrip
11500
+ expand: true
11501
+ no-source: true
11502
+ reports:
11503
+ - format: html
11504
+ name: ${DATE}_${TASK_NAME}.html
11505
+ recipients:
11506
+ - estebanldh@gmail.com
11507
+ - nsimean@despegar.com
11508
+ - name: checkout.compatibility.ar.oneway
11509
+ class_name: Henry::Task::CucumberTask
11510
+ options:
11511
+ tags:
11512
+ - checkout
11513
+ - compatibility
11514
+ - ar
11515
+ - oneway
11516
+ expand: true
11517
+ no-source: true
11518
+ reports:
11519
+ - format: html
11520
+ name: ${DATE}_${TASK_NAME}.html
11521
+ recipients:
11522
+ - estebanldh@gmail.com
11523
+ - nsimean@despegar.com
11524
+ - name: checkout.compatibility.ar.multipledestinations
11525
+ class_name: Henry::Task::CucumberTask
11526
+ options:
11527
+ tags:
11528
+ - checkout
11529
+ - compatibility
11530
+ - ar
11531
+ - multipledestinations
11532
+ expand: true
11533
+ no-source: true
11534
+ reports:
11535
+ - format: html
11536
+ name: ${DATE}_${TASK_NAME}.html
11537
+ recipients:
11538
+ - estebanldh@gmail.com
11539
+ - nsimean@despegar.com
11540
+ - name: checkout.compatibility.br
11541
+ class_name: Henry::Task::CucumberTask
11542
+ options:
11543
+ tags:
11544
+ - checkout
11545
+ - compatibility
11546
+ - br
11547
+ expand: true
11548
+ no-source: true
11549
+ reports:
11550
+ - format: html
11551
+ name: ${DATE}_${TASK_NAME}.html
11552
+ recipients:
11553
+ - estebanldh@gmail.com
11554
+ - nsimean@despegar.com
11555
+ - name: checkout.compatibility.br.roundtrip
11556
+ class_name: Henry::Task::CucumberTask
11557
+ options:
11558
+ tags:
11559
+ - checkout
11560
+ - compatibility
11561
+ - br
11562
+ - roundtrip
11563
+ expand: true
11564
+ no-source: true
11565
+ reports:
11566
+ - format: html
11567
+ name: ${DATE}_${TASK_NAME}.html
11568
+ recipients:
11569
+ - estebanldh@gmail.com
11570
+ - nsimean@despegar.com
11571
+ - name: checkout.compatibility.br.oneway
11572
+ class_name: Henry::Task::CucumberTask
11573
+ options:
11574
+ tags:
11575
+ - checkout
11576
+ - compatibility
11577
+ - br
11578
+ - oneway
11579
+ expand: true
11580
+ no-source: true
11581
+ reports:
11582
+ - format: html
11583
+ name: ${DATE}_${TASK_NAME}.html
11584
+ recipients:
11585
+ - estebanldh@gmail.com
11586
+ - nsimean@despegar.com
11587
+ - name: checkout.compatibility.br.multipledestinations
11588
+ class_name: Henry::Task::CucumberTask
11589
+ options:
11590
+ tags:
11591
+ - checkout
11592
+ - compatibility
11593
+ - br
11594
+ - multipledestinations
11595
+ expand: true
11596
+ no-source: true
11597
+ reports:
11598
+ - format: html
11599
+ name: ${DATE}_${TASK_NAME}.html
11600
+ recipients:
11601
+ - estebanldh@gmail.com
11602
+ - nsimean@despegar.com
11603
+ - name: checkout.compatibility.co
11604
+ class_name: Henry::Task::CucumberTask
11605
+ options:
11606
+ tags:
11607
+ - checkout
11608
+ - compatibility
11609
+ - co
11610
+ expand: true
11611
+ no-source: true
11612
+ reports:
11613
+ - format: html
11614
+ name: ${DATE}_${TASK_NAME}.html
11615
+ recipients:
11616
+ - estebanldh@gmail.com
11617
+ - nsimean@despegar.com
11618
+ - name: checkout.compatibility.co.roundtrip
11619
+ class_name: Henry::Task::CucumberTask
11620
+ options:
11621
+ tags:
11622
+ - checkout
11623
+ - compatibility
11624
+ - co
11625
+ - roundtrip
11626
+ expand: true
11627
+ no-source: true
11628
+ reports:
11629
+ - format: html
11630
+ name: ${DATE}_${TASK_NAME}.html
11631
+ recipients:
11632
+ - estebanldh@gmail.com
11633
+ - nsimean@despegar.com
11634
+ - name: checkout.compatibility.co.oneway
11635
+ class_name: Henry::Task::CucumberTask
11636
+ options:
11637
+ tags:
11638
+ - checkout
11639
+ - compatibility
11640
+ - co
11641
+ - oneway
11642
+ expand: true
11643
+ no-source: true
11644
+ reports:
11645
+ - format: html
11646
+ name: ${DATE}_${TASK_NAME}.html
11647
+ recipients:
11648
+ - estebanldh@gmail.com
11649
+ - nsimean@despegar.com
11650
+ - name: checkout.compatibility.co.multipledestinations
11651
+ class_name: Henry::Task::CucumberTask
11652
+ options:
11653
+ tags:
11654
+ - checkout
11655
+ - compatibility
11656
+ - co
11657
+ - multipledestinations
11658
+ expand: true
11659
+ no-source: true
11660
+ reports:
11661
+ - format: html
11662
+ name: ${DATE}_${TASK_NAME}.html
11663
+ recipients:
11664
+ - estebanldh@gmail.com
11665
+ - nsimean@despegar.com
11666
+ - name: checkout.compatibility.cl
11667
+ class_name: Henry::Task::CucumberTask
11668
+ options:
11669
+ tags:
11670
+ - checkout
11671
+ - compatibility
11672
+ - cl
11673
+ expand: true
11674
+ no-source: true
11675
+ reports:
11676
+ - format: html
11677
+ name: ${DATE}_${TASK_NAME}.html
11678
+ recipients:
11679
+ - estebanldh@gmail.com
11680
+ - nsimean@despegar.com
11681
+ - name: checkout.compatibility.cl.roundtrip
11682
+ class_name: Henry::Task::CucumberTask
11683
+ options:
11684
+ tags:
11685
+ - checkout
11686
+ - compatibility
11687
+ - cl
11688
+ - roundtrip
11689
+ expand: true
11690
+ no-source: true
11691
+ reports:
11692
+ - format: html
11693
+ name: ${DATE}_${TASK_NAME}.html
11694
+ recipients:
11695
+ - estebanldh@gmail.com
11696
+ - nsimean@despegar.com
11697
+ - name: checkout.compatibility.cl.oneway
11698
+ class_name: Henry::Task::CucumberTask
11699
+ options:
11700
+ tags:
11701
+ - checkout
11702
+ - compatibility
11703
+ - cl
11704
+ - oneway
11705
+ expand: true
11706
+ no-source: true
11707
+ reports:
11708
+ - format: html
11709
+ name: ${DATE}_${TASK_NAME}.html
11710
+ recipients:
11711
+ - estebanldh@gmail.com
11712
+ - nsimean@despegar.com
11713
+ - name: checkout.compatibility.cl.multipledestinations
11714
+ class_name: Henry::Task::CucumberTask
11715
+ options:
11716
+ tags:
11717
+ - checkout
11718
+ - compatibility
11719
+ - cl
11720
+ - multipledestinations
11721
+ expand: true
11722
+ no-source: true
11723
+ reports:
11724
+ - format: html
11725
+ name: ${DATE}_${TASK_NAME}.html
11726
+ recipients:
11727
+ - estebanldh@gmail.com
11728
+ - nsimean@despegar.com
11729
+ - name: checkout.compatibility.cr
11730
+ class_name: Henry::Task::CucumberTask
11731
+ options:
11732
+ tags:
11733
+ - checkout
11734
+ - compatibility
11735
+ - cr
11736
+ expand: true
11737
+ no-source: true
11738
+ reports:
11739
+ - format: html
11740
+ name: ${DATE}_${TASK_NAME}.html
11741
+ recipients:
11742
+ - estebanldh@gmail.com
11743
+ - nsimean@despegar.com
11744
+ - name: checkout.compatibility.cr.roundtrip
11745
+ class_name: Henry::Task::CucumberTask
11746
+ options:
11747
+ tags:
11748
+ - checkout
11749
+ - compatibility
11750
+ - cr
11751
+ - roundtrip
11752
+ expand: true
11753
+ no-source: true
11754
+ reports:
11755
+ - format: html
11756
+ name: ${DATE}_${TASK_NAME}.html
11757
+ recipients:
11758
+ - estebanldh@gmail.com
11759
+ - nsimean@despegar.com
11760
+ - name: checkout.compatibility.cr.oneway
11761
+ class_name: Henry::Task::CucumberTask
11762
+ options:
11763
+ tags:
11764
+ - checkout
11765
+ - compatibility
11766
+ - cr
11767
+ - oneway
11768
+ expand: true
11769
+ no-source: true
11770
+ reports:
11771
+ - format: html
11772
+ name: ${DATE}_${TASK_NAME}.html
11773
+ recipients:
11774
+ - estebanldh@gmail.com
11775
+ - nsimean@despegar.com
11776
+ - name: checkout.compatibility.cr.multipledestinations
11777
+ class_name: Henry::Task::CucumberTask
11778
+ options:
11779
+ tags:
11780
+ - checkout
11781
+ - compatibility
11782
+ - cr
11783
+ - multipledestinations
11784
+ expand: true
11785
+ no-source: true
11786
+ reports:
11787
+ - format: html
11788
+ name: ${DATE}_${TASK_NAME}.html
11789
+ recipients:
11790
+ - estebanldh@gmail.com
11791
+ - nsimean@despegar.com
11792
+ - name: checkout.compatibility.ec
11793
+ class_name: Henry::Task::CucumberTask
11794
+ options:
11795
+ tags:
11796
+ - checkout
11797
+ - compatibility
11798
+ - ec
11799
+ expand: true
11800
+ no-source: true
11801
+ reports:
11802
+ - format: html
11803
+ name: ${DATE}_${TASK_NAME}.html
11804
+ recipients:
11805
+ - estebanldh@gmail.com
11806
+ - nsimean@despegar.com
11807
+ - name: checkout.compatibility.ec.roundtrip
11808
+ class_name: Henry::Task::CucumberTask
11809
+ options:
11810
+ tags:
11811
+ - checkout
11812
+ - compatibility
11813
+ - ec
11814
+ - roundtrip
11815
+ expand: true
11816
+ no-source: true
11817
+ reports:
11818
+ - format: html
11819
+ name: ${DATE}_${TASK_NAME}.html
11820
+ recipients:
11821
+ - estebanldh@gmail.com
11822
+ - nsimean@despegar.com
11823
+ - name: checkout.compatibility.ec.oneway
11824
+ class_name: Henry::Task::CucumberTask
11825
+ options:
11826
+ tags:
11827
+ - checkout
11828
+ - compatibility
11829
+ - ec
11830
+ - oneway
11831
+ expand: true
11832
+ no-source: true
11833
+ reports:
11834
+ - format: html
11835
+ name: ${DATE}_${TASK_NAME}.html
11836
+ recipients:
11837
+ - estebanldh@gmail.com
11838
+ - nsimean@despegar.com
11839
+ - name: checkout.compatibility.ec.multipledestinations
11840
+ class_name: Henry::Task::CucumberTask
11841
+ options:
11842
+ tags:
11843
+ - checkout
11844
+ - compatibility
11845
+ - ec
11846
+ - multipledestinations
11847
+ expand: true
11848
+ no-source: true
11849
+ reports:
11850
+ - format: html
11851
+ name: ${DATE}_${TASK_NAME}.html
11852
+ recipients:
11853
+ - estebanldh@gmail.com
11854
+ - nsimean@despegar.com
11855
+ - name: checkout.compatibility.mx
11856
+ class_name: Henry::Task::CucumberTask
11857
+ options:
11858
+ tags:
11859
+ - checkout
11860
+ - compatibility
11861
+ - mx
11862
+ expand: true
11863
+ no-source: true
11864
+ reports:
11865
+ - format: html
11866
+ name: ${DATE}_${TASK_NAME}.html
11867
+ recipients:
11868
+ - estebanldh@gmail.com
11869
+ - nsimean@despegar.com
11870
+ - name: checkout.compatibility.mx.roundtrip
11871
+ class_name: Henry::Task::CucumberTask
11872
+ options:
11873
+ tags:
11874
+ - checkout
11875
+ - compatibility
11876
+ - mx
11877
+ - roundtrip
11878
+ expand: true
11879
+ no-source: true
11880
+ reports:
11881
+ - format: html
11882
+ name: ${DATE}_${TASK_NAME}.html
11883
+ recipients:
11884
+ - estebanldh@gmail.com
11885
+ - nsimean@despegar.com
11886
+ - name: checkout.compatibility.mx.oneway
11887
+ class_name: Henry::Task::CucumberTask
11888
+ options:
11889
+ tags:
11890
+ - checkout
11891
+ - compatibility
11892
+ - mx
11893
+ - oneway
11894
+ expand: true
11895
+ no-source: true
11896
+ reports:
11897
+ - format: html
11898
+ name: ${DATE}_${TASK_NAME}.html
11899
+ recipients:
11900
+ - estebanldh@gmail.com
11901
+ - nsimean@despegar.com
11902
+ - name: checkout.compatibility.mx.multipledestinations
11903
+ class_name: Henry::Task::CucumberTask
11904
+ options:
11905
+ tags:
11906
+ - checkout
11907
+ - compatibility
11908
+ - mx
11909
+ - multipledestinations
11910
+ expand: true
11911
+ no-source: true
11912
+ reports:
11913
+ - format: html
11914
+ name: ${DATE}_${TASK_NAME}.html
11915
+ recipients:
11916
+ - estebanldh@gmail.com
11917
+ - nsimean@despegar.com
11918
+ - name: checkout.compatibility.pa
11919
+ class_name: Henry::Task::CucumberTask
11920
+ options:
11921
+ tags:
11922
+ - checkout
11923
+ - compatibility
11924
+ - pa
11925
+ expand: true
11926
+ no-source: true
11927
+ reports:
11928
+ - format: html
11929
+ name: ${DATE}_${TASK_NAME}.html
11930
+ recipients:
11931
+ - estebanldh@gmail.com
11932
+ - nsimean@despegar.com
11933
+ - name: checkout.compatibility.pa.roundtrip
11934
+ class_name: Henry::Task::CucumberTask
11935
+ options:
11936
+ tags:
11937
+ - checkout
11938
+ - compatibility
11939
+ - pa
11940
+ - roundtrip
11941
+ expand: true
11942
+ no-source: true
11943
+ reports:
11944
+ - format: html
11945
+ name: ${DATE}_${TASK_NAME}.html
11946
+ recipients:
11947
+ - estebanldh@gmail.com
11948
+ - nsimean@despegar.com
11949
+ - name: checkout.compatibility.pa.oneway
11950
+ class_name: Henry::Task::CucumberTask
11951
+ options:
11952
+ tags:
11953
+ - checkout
11954
+ - compatibility
11955
+ - pa
11956
+ - oneway
11957
+ expand: true
11958
+ no-source: true
11959
+ reports:
11960
+ - format: html
11961
+ name: ${DATE}_${TASK_NAME}.html
11962
+ recipients:
11963
+ - estebanldh@gmail.com
11964
+ - nsimean@despegar.com
11965
+ - name: checkout.compatibility.pa.multipledestinations
11966
+ class_name: Henry::Task::CucumberTask
11967
+ options:
11968
+ tags:
11969
+ - checkout
11970
+ - compatibility
11971
+ - pa
11972
+ - multipledestinations
11973
+ expand: true
11974
+ no-source: true
11975
+ reports:
11976
+ - format: html
11977
+ name: ${DATE}_${TASK_NAME}.html
11978
+ recipients:
11979
+ - estebanldh@gmail.com
11980
+ - nsimean@despegar.com
11981
+ - name: checkout.compatibility.pe
11982
+ class_name: Henry::Task::CucumberTask
11983
+ options:
11984
+ tags:
11985
+ - checkout
11986
+ - compatibility
11987
+ - pe
11988
+ expand: true
11989
+ no-source: true
11990
+ reports:
11991
+ - format: html
11992
+ name: ${DATE}_${TASK_NAME}.html
11993
+ recipients:
11994
+ - estebanldh@gmail.com
11995
+ - nsimean@despegar.com
11996
+ - name: checkout.compatibility.pe.roundtrip
11997
+ class_name: Henry::Task::CucumberTask
11998
+ options:
11999
+ tags:
12000
+ - checkout
12001
+ - compatibility
12002
+ - pe
12003
+ - roundtrip
12004
+ expand: true
12005
+ no-source: true
12006
+ reports:
12007
+ - format: html
12008
+ name: ${DATE}_${TASK_NAME}.html
12009
+ recipients:
12010
+ - estebanldh@gmail.com
12011
+ - nsimean@despegar.com
12012
+ - name: checkout.compatibility.pe.oneway
12013
+ class_name: Henry::Task::CucumberTask
12014
+ options:
12015
+ tags:
12016
+ - checkout
12017
+ - compatibility
12018
+ - pe
12019
+ - oneway
12020
+ expand: true
12021
+ no-source: true
12022
+ reports:
12023
+ - format: html
12024
+ name: ${DATE}_${TASK_NAME}.html
12025
+ recipients:
12026
+ - estebanldh@gmail.com
12027
+ - nsimean@despegar.com
12028
+ - name: checkout.compatibility.pe.multipledestinations
12029
+ class_name: Henry::Task::CucumberTask
12030
+ options:
12031
+ tags:
12032
+ - checkout
12033
+ - compatibility
12034
+ - pe
12035
+ - multipledestinations
12036
+ expand: true
12037
+ no-source: true
12038
+ reports:
12039
+ - format: html
12040
+ name: ${DATE}_${TASK_NAME}.html
12041
+ recipients:
12042
+ - estebanldh@gmail.com
12043
+ - nsimean@despegar.com
12044
+ - name: checkout.compatibility.us
12045
+ class_name: Henry::Task::CucumberTask
12046
+ options:
12047
+ tags:
12048
+ - checkout
12049
+ - compatibility
12050
+ - us
12051
+ expand: true
12052
+ no-source: true
12053
+ reports:
12054
+ - format: html
12055
+ name: ${DATE}_${TASK_NAME}.html
12056
+ recipients:
12057
+ - estebanldh@gmail.com
12058
+ - nsimean@despegar.com
12059
+ - name: checkout.compatibility.us.roundtrip
12060
+ class_name: Henry::Task::CucumberTask
12061
+ options:
12062
+ tags:
12063
+ - checkout
12064
+ - compatibility
12065
+ - us
12066
+ - roundtrip
12067
+ expand: true
12068
+ no-source: true
12069
+ reports:
12070
+ - format: html
12071
+ name: ${DATE}_${TASK_NAME}.html
12072
+ recipients:
12073
+ - estebanldh@gmail.com
12074
+ - nsimean@despegar.com
12075
+ - name: checkout.compatibility.us.oneway
12076
+ class_name: Henry::Task::CucumberTask
12077
+ options:
12078
+ tags:
12079
+ - checkout
12080
+ - compatibility
12081
+ - us
12082
+ - oneway
12083
+ expand: true
12084
+ no-source: true
12085
+ reports:
12086
+ - format: html
12087
+ name: ${DATE}_${TASK_NAME}.html
12088
+ recipients:
12089
+ - estebanldh@gmail.com
12090
+ - nsimean@despegar.com
12091
+ - name: checkout.compatibility.us.multipledestinations
12092
+ class_name: Henry::Task::CucumberTask
12093
+ options:
12094
+ tags:
12095
+ - checkout
12096
+ - compatibility
12097
+ - us
12098
+ - multipledestinations
12099
+ expand: true
12100
+ no-source: true
12101
+ reports:
12102
+ - format: html
12103
+ name: ${DATE}_${TASK_NAME}.html
12104
+ recipients:
12105
+ - estebanldh@gmail.com
12106
+ - nsimean@despegar.com
12107
+ - name: checkout.compatibility.uy
12108
+ class_name: Henry::Task::CucumberTask
12109
+ options:
12110
+ tags:
12111
+ - checkout
12112
+ - compatibility
12113
+ - uy
12114
+ expand: true
12115
+ no-source: true
12116
+ reports:
12117
+ - format: html
12118
+ name: ${DATE}_${TASK_NAME}.html
12119
+ recipients:
12120
+ - estebanldh@gmail.com
12121
+ - nsimean@despegar.com
12122
+ - name: checkout.compatibility.uy.roundtrip
12123
+ class_name: Henry::Task::CucumberTask
12124
+ options:
12125
+ tags:
12126
+ - checkout
12127
+ - compatibility
12128
+ - uy
12129
+ - roundtrip
12130
+ expand: true
12131
+ no-source: true
12132
+ reports:
12133
+ - format: html
12134
+ name: ${DATE}_${TASK_NAME}.html
12135
+ recipients:
12136
+ - estebanldh@gmail.com
12137
+ - nsimean@despegar.com
12138
+ - name: checkout.compatibility.uy.oneway
12139
+ class_name: Henry::Task::CucumberTask
12140
+ options:
12141
+ tags:
12142
+ - checkout
12143
+ - compatibility
12144
+ - uy
12145
+ - oneway
12146
+ expand: true
12147
+ no-source: true
12148
+ reports:
12149
+ - format: html
12150
+ name: ${DATE}_${TASK_NAME}.html
12151
+ recipients:
12152
+ - estebanldh@gmail.com
12153
+ - nsimean@despegar.com
12154
+ - name: checkout.compatibility.uy.multipledestinations
12155
+ class_name: Henry::Task::CucumberTask
12156
+ options:
12157
+ tags:
12158
+ - checkout
12159
+ - compatibility
12160
+ - uy
12161
+ - multipledestinations
12162
+ expand: true
12163
+ no-source: true
12164
+ reports:
12165
+ - format: html
12166
+ name: ${DATE}_${TASK_NAME}.html
12167
+ recipients:
12168
+ - estebanldh@gmail.com
12169
+ - nsimean@despegar.com
12170
+ - name: checkout.compatibility.ve
12171
+ class_name: Henry::Task::CucumberTask
12172
+ options:
12173
+ tags:
12174
+ - checkout
12175
+ - compatibility
12176
+ - ve
12177
+ expand: true
12178
+ no-source: true
12179
+ reports:
12180
+ - format: html
12181
+ name: ${DATE}_${TASK_NAME}.html
12182
+ recipients:
12183
+ - estebanldh@gmail.com
12184
+ - nsimean@despegar.com
12185
+ - name: checkout.compatibility.ve.roundtrip
12186
+ class_name: Henry::Task::CucumberTask
12187
+ options:
12188
+ tags:
12189
+ - checkout
12190
+ - compatibility
12191
+ - ve
12192
+ - roundtrip
12193
+ expand: true
12194
+ no-source: true
12195
+ reports:
12196
+ - format: html
12197
+ name: ${DATE}_${TASK_NAME}.html
12198
+ recipients:
12199
+ - estebanldh@gmail.com
12200
+ - nsimean@despegar.com
12201
+ - name: checkout.compatibility.ve.oneway
12202
+ class_name: Henry::Task::CucumberTask
12203
+ options:
12204
+ tags:
12205
+ - checkout
12206
+ - compatibility
12207
+ - ve
12208
+ - oneway
12209
+ expand: true
12210
+ no-source: true
12211
+ reports:
12212
+ - format: html
12213
+ name: ${DATE}_${TASK_NAME}.html
12214
+ recipients:
12215
+ - estebanldh@gmail.com
12216
+ - nsimean@despegar.com
12217
+ - name: checkout.compatibility.ve.multipledestinations
12218
+ class_name: Henry::Task::CucumberTask
12219
+ options:
12220
+ tags:
12221
+ - checkout
12222
+ - compatibility
12223
+ - ve
12224
+ - multipledestinations
12225
+ expand: true
12226
+ no-source: true
12227
+ reports:
12228
+ - format: html
12229
+ name: ${DATE}_${TASK_NAME}.html
12230
+ recipients:
12231
+ - estebanldh@gmail.com
12232
+ - nsimean@despegar.com
11463
12233
  - name: checkout.providers
11464
12234
  class_name: Henry::Task::CucumberTask
11465
12235
  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: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez,lsimean
@@ -142,14 +142,14 @@ dependencies:
142
142
  requirements:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
- version: 0.28.1
145
+ version: 1.0.0
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 0.28.1
152
+ version: 1.0.0
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: byebug
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -285,6 +285,7 @@ files:
285
285
  - features/tests/checkout/book_ok.feature
286
286
  - features/tests/checkout/cac.feature
287
287
  - features/tests/checkout/cash_payment.feature
288
+ - features/tests/checkout/compatibility.feature
288
289
  - features/tests/checkout/compras_duplicadas.feature
289
290
  - features/tests/checkout/cupones.feature
290
291
  - features/tests/checkout/error_messages.feature