flights_gui_henry_tests_ds 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/Gemfile +3 -0
  2. data/features/data/home-offers-config.csv +883 -0
  3. data/features/data/host.yml +78 -0
  4. data/features/data/miles.yml +216 -0
  5. data/features/data/search.yml +27 -0
  6. data/features/data/sites.yml +49 -0
  7. data/features/data/sites.yml.orig +54 -0
  8. data/features/data/tag_microsoft.yml +68 -0
  9. data/features/step_definitions/checkout/agencia_steps.rb +6 -0
  10. data/features/step_definitions/checkout/cash_payment_steps.rb +70 -0
  11. data/features/step_definitions/checkout/chat_steps.rb +57 -0
  12. data/features/step_definitions/checkout/checkout_steps.rb +265 -0
  13. data/features/step_definitions/checkout/cupones_steps.rb +36 -0
  14. data/features/step_definitions/checkout/error_messages.rb +291 -0
  15. data/features/step_definitions/checkout/fast_checkout.rb +55 -0
  16. data/features/step_definitions/checkout/price_jump_steps.rb +70 -0
  17. data/features/step_definitions/checkout/seguros_steps.rb +79 -0
  18. data/features/step_definitions/checkout/thanks_steps.rb +81 -0
  19. data/features/step_definitions/content/contents_steps.rb +140 -0
  20. data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +82 -0
  21. data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +53 -0
  22. data/features/step_definitions/filter/filters_airlines.rb +37 -0
  23. data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
  24. data/features/step_definitions/filter/filters_price_steps.rb +91 -0
  25. data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
  26. data/features/step_definitions/filter/filters_time_steps.rb +146 -0
  27. data/features/step_definitions/filter/matrix_steps.rb +276 -0
  28. data/features/step_definitions/landing/landing_checkout_steps.rb +49 -0
  29. data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
  30. data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
  31. data/features/step_definitions/landing/landing_home_steps.rb +82 -0
  32. data/features/step_definitions/landing/landing_long_tail.rb +58 -0
  33. data/features/step_definitions/landing/landing_negative_steps.rb +128 -0
  34. data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
  35. data/features/step_definitions/landing/landing_steps.rb +348 -0
  36. data/features/step_definitions/orders/orders.rb +83 -0
  37. data/features/step_definitions/others/advancedgui_steps.rb +28 -0
  38. data/features/step_definitions/others/advancednogui_steps.rb +34 -0
  39. data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
  40. data/features/step_definitions/others/cookies_steps.rb +40 -0
  41. data/features/step_definitions/others/flights_tracker_steps.rb +74 -0
  42. data/features/step_definitions/others/generic_steps.rb +33 -0
  43. data/features/step_definitions/others/newsletter_steps.rb +29 -0
  44. data/features/step_definitions/others/one_day_search.rb +58 -0
  45. data/features/step_definitions/others/print_steps.rb +26 -0
  46. data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
  47. data/features/step_definitions/others/recommendation_steps.rb +78 -0
  48. data/features/step_definitions/others/render_steps.rb +70 -0
  49. data/features/step_definitions/others/tag_steps.rb +164 -0
  50. data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
  51. data/features/step_definitions/results/devtools_steps.rb +10 -0
  52. data/features/step_definitions/results/itineraries_steps.rb +43 -0
  53. data/features/step_definitions/results/load_steps.rb +73 -0
  54. data/features/step_definitions/results/results_steps.rb +79 -0
  55. data/features/step_definitions/results/search_steps.rb +115 -0
  56. data/features/step_definitions/search/alerts_steps.rb +132 -0
  57. data/features/step_definitions/search/basefare_steps.rb +88 -0
  58. data/features/step_definitions/search/bestprices_steps.rb +70 -0
  59. data/features/step_definitions/search/cross_sell_row_hoteles.rb +52 -0
  60. data/features/step_definitions/search/cross_sell_steps.rb +15 -0
  61. data/features/step_definitions/search/delays_steps.rb +67 -0
  62. data/features/step_definitions/search/details_steps.rb +9 -0
  63. data/features/step_definitions/search/ecoflights_steps.rb +9 -0
  64. data/features/step_definitions/search/errors_steps.rb +24 -0
  65. data/features/step_definitions/search/fenix_steps.rb +99 -0
  66. data/features/step_definitions/search/flight_gui_steps.rb +376 -0
  67. data/features/step_definitions/search/miles_step.rb +13 -0
  68. data/features/step_definitions/search/pagination_steps.rb +29 -0
  69. data/features/step_definitions/search/reviews_step.rb +58 -0
  70. data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
  71. data/features/step_definitions/search/wish_list_steps.rb +128 -0
  72. data/features/support/env.rb +86 -0
  73. data/features/support/lib/clusters.rb +6 -0
  74. data/features/support/lib/clusters/checkout_cluster.rb +111 -0
  75. data/features/support/lib/clusters/data/data.rb +33 -0
  76. data/features/support/lib/clusters/details/details_cluster.rb +36 -0
  77. data/features/support/lib/clusters/results/landing_cluster.rb +87 -0
  78. data/features/support/lib/clusters/results/render_cluster.rb +86 -0
  79. data/features/support/lib/clusters/results_cluster.rb +168 -0
  80. data/features/support/lib/helpers.rb +5 -0
  81. data/features/support/lib/helpers/browser.rb +235 -0
  82. data/features/support/lib/helpers/checkout.rb +29 -0
  83. data/features/support/lib/helpers/clusters.rb +166 -0
  84. data/features/support/lib/helpers/landing.rb +121 -0
  85. data/features/support/lib/helpers/render.rb +135 -0
  86. data/features/support/lib/price.rb +66 -0
  87. data/features/support/lib/process_manager.rb +104 -0
  88. data/features/support/lib/services.rb +4 -0
  89. data/features/support/lib/services/fenix.rb +14 -0
  90. data/features/support/lib/services/landing.rb +18 -0
  91. data/features/support/lib/services/results.rb +62 -0
  92. data/features/support/matchers.rb +120 -0
  93. data/features/support/redefinitions.rb +42 -0
  94. data/features/tests/checkout/agency.feature +27 -0
  95. data/features/tests/checkout/button_cac.feature +53 -0
  96. data/features/tests/checkout/cash_payment.feature +50 -0
  97. data/features/tests/checkout/compras_duplicadas.feature +95 -0
  98. data/features/tests/checkout/cupones.feature +34 -0
  99. data/features/tests/checkout/error_messages.feature +80 -0
  100. data/features/tests/checkout/fast_checkout.feature +82 -0
  101. data/features/tests/checkout/integration.feature +235 -0
  102. data/features/tests/checkout/low_cost.feature +62 -0
  103. data/features/tests/checkout/online_payment.feature +50 -0
  104. data/features/tests/checkout/price_jump.feature +103 -0
  105. data/features/tests/checkout/providers.feature +76 -0
  106. data/features/tests/checkout/seguros.feature +42 -0
  107. data/features/tests/contents/costs.feature +29 -0
  108. data/features/tests/contents/rules.feature +58 -0
  109. data/features/tests/contents/webcheckin.feature +26 -0
  110. data/features/tests/desambiguation/airports.feature +89 -0
  111. data/features/tests/desambiguation/airports_landing.feature +88 -0
  112. data/features/tests/desambiguation/city.feature +86 -0
  113. data/features/tests/filters/filters.feature +113 -0
  114. data/features/tests/fixes/advancedgui.feature +171 -0
  115. data/features/tests/fixes/advancednogui.feature +60 -0
  116. data/features/tests/fixes/book_no_gui.feature +21 -0
  117. data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
  118. data/features/tests/fixes/facebook.feature +31 -0
  119. data/features/tests/fixes/landing_checkout.feature +286 -0
  120. data/features/tests/fixes/landing_home_alerts.feature +82 -0
  121. data/features/tests/fixes/matrix_stops.feature +104 -0
  122. data/features/tests/fixes/one_day_search.feature +63 -0
  123. data/features/tests/fixes/print.feature +87 -0
  124. data/features/tests/fixes/searches_no_gui.feature +85 -0
  125. data/features/tests/fixes/upgrade_bussines.feature +100 -0
  126. data/features/tests/landing/landing_alerts.feature +93 -0
  127. data/features/tests/landing/landing_filters.feature +171 -0
  128. data/features/tests/landing/landing_home.feature +68 -0
  129. data/features/tests/landing/landing_integration.feature +149 -0
  130. data/features/tests/landing/landing_long_tail.feature +169 -0
  131. data/features/tests/landing/landing_matrix.feature +152 -0
  132. data/features/tests/landing/landing_negative.feature +151 -0
  133. data/features/tests/landing/landing_orders.feature +79 -0
  134. data/features/tests/landing/landing_pagination.feature +141 -0
  135. data/features/tests/landing/landing_passenger_review.feature +135 -0
  136. data/features/tests/landing/landing_positive.feature +151 -0
  137. data/features/tests/landing/landing_reviews.feature +135 -0
  138. data/features/tests/landing/landing_sort.feature +140 -0
  139. data/features/tests/landing/landing_tags.feature +142 -0
  140. data/features/tests/matrix/matrix_airlines.feature +80 -0
  141. data/features/tests/matrix/matrix_fare_chart.feature +40 -0
  142. data/features/tests/matrix/matrix_price.feature +40 -0
  143. data/features/tests/others/alerts.feature +89 -0
  144. data/features/tests/others/anticipatedsearch.feature +82 -0
  145. data/features/tests/others/chat.feature +23 -0
  146. data/features/tests/others/flights_tracker.feature +94 -0
  147. data/features/tests/others/newsletter.feature +118 -0
  148. data/features/tests/others/querystringparameters.feature +82 -0
  149. data/features/tests/others/recommendation.feature +107 -0
  150. data/features/tests/others/semaphore.feature +206 -0
  151. data/features/tests/search/basefare.feature +89 -0
  152. data/features/tests/search/errors.feature +198 -0
  153. data/features/tests/search/itineraries.feature +92 -0
  154. data/features/tests/search/orders.feature +88 -0
  155. data/features/tests/search/pagination.feature +73 -0
  156. data/features/tests/search/reviews.feature +83 -0
  157. data/features/tests/search/searches.feature +214 -0
  158. data/features/tests/search/wish_list.feature +58 -0
  159. data/flights_gui_henry_tests.gemspec +32 -0
  160. data/henry-context.yml +17262 -0
  161. metadata +382 -0
@@ -0,0 +1,235 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.integration
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @integration
7
+ Esquema del escenario: Ingresar a la pagina de resultados
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Elijo un itinerario y paso a checkout
12
+ Cuando Verifico que ingrese al checkout
13
+ Y Verifico el segundo tag de google en resultado de checkout
14
+ Y Verifico que se muestre el banner de cancelacion
15
+ Y Valido los valores del desglose del checkout
16
+ Y Verifico el pixel de Efrontier
17
+ Y Si el site no es "PR", Verifico el pixel de trackeame en checkout
18
+ Entonces verifico que los precios de las cuotas se muestran correctamente
19
+ Y Verifico que se muestren la caja de clientes felices
20
+ Entonces Completo el formulario de pasajeros
21
+ Y Completo el formulario de tarjeta
22
+ Y Completo los datos de resolucion AFIP
23
+ Y Completo los datos de contacto
24
+ Y Si pide factura fiscal, Completo los campos de factura fiscal
25
+ Y Realizo la compra
26
+ Entonces Verifico que dirija a la pagina de gracias
27
+ Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
28
+ Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
29
+ Entonces Si debo completar de vuelta el formulario, completo el formulario
30
+ Y Verifico que genere id cro
31
+ Y Si el site no es "PR", Verifico el pixel de trackeame en gracias
32
+ Y Verifico el pixel de Efrontier
33
+ Y Verifico el segundo tag de google en resultado de checkout
34
+ Y Verifico el link de mi despegar
35
+ Y Levanto los datos del vuelo
36
+ Y Verifico el tag de datalayer
37
+ #Cuando Si cumple para pruebas en fenix, Inicializo las pruebas en fenix
38
+ #Entonces Si cumple para pruebas en fenix, Verifico que las pruebas en fenix esten correctas
39
+
40
+ @ar
41
+ @roundtrip
42
+ Ejemplos:
43
+ |pais|tipo|cabotage|
44
+ |AR |roundtrip|nil|
45
+ @ar
46
+ @oneway
47
+ Ejemplos:
48
+ |pais|tipo|cabotage|
49
+ |AR |oneway|nil|
50
+ @ar
51
+ @multipledestinations
52
+ Ejemplos:
53
+ |pais|tipo|cabotage|
54
+ |AR |multipledestinations|nil|
55
+ @br
56
+ @roundtrip
57
+ Ejemplos:
58
+ |pais|tipo|cabotage|
59
+ |BR |roundtrip|nil|
60
+ @br
61
+ @oneway
62
+ Ejemplos:
63
+ |pais|tipo|cabotage|
64
+ |BR |oneway|nil|
65
+ @br
66
+ @multipledestinations
67
+ Ejemplos:
68
+ |pais|tipo|cabotage|
69
+ |BR |multipledestinations|nil|
70
+ @mx
71
+ @roundtrip
72
+ Ejemplos:
73
+ |pais|tipo|cabotage|
74
+ |MX |roundtrip|nil|
75
+ @mx
76
+ @oneway
77
+ Ejemplos:
78
+ |pais|tipo|cabotage|
79
+ |MX |oneway|nil|
80
+ @mx
81
+ @multipledestinations
82
+ Ejemplos:
83
+ |pais|tipo|cabotage|
84
+ |MX |multipledestinations|nil|
85
+ @us
86
+ @roundtrip
87
+ Ejemplos:
88
+ |pais|tipo|cabotage|
89
+ |US |roundtrip|nil|
90
+ @us
91
+ @oneway
92
+ Ejemplos:
93
+ |pais|tipo|cabotage|
94
+ |US |oneway|nil|
95
+ @us
96
+ @multipledestinations
97
+ Ejemplos:
98
+ |pais|tipo|cabotage|
99
+ |US |multipledestinations|nil|
100
+ @uy
101
+ @roundtrip
102
+ Ejemplos:
103
+ |pais|tipo|cabotage|
104
+ |UY |roundtrip|nil|
105
+ @uy
106
+ @oneway
107
+ Ejemplos:
108
+ |pais|tipo|cabotage|
109
+ |UY |oneway|nil|
110
+ @uy
111
+ @multipledestinations
112
+ Ejemplos:
113
+ |pais|tipo|cabotage|
114
+ |UY |multipledestinations|nil|
115
+ @pe
116
+ @roundtrip
117
+ Ejemplos:
118
+ |pais|tipo|cabotage|
119
+ |PE |roundtrip|nil|
120
+ @pe
121
+ @oneway
122
+ Ejemplos:
123
+ |pais|tipo|cabotage|
124
+ |PE |oneway|nil|
125
+ @pe
126
+ @multipledestinations
127
+ Ejemplos:
128
+ |pais|tipo|cabotage|
129
+ |PE |multipledestinations|nil|
130
+ @co
131
+ @roundtrip
132
+ Ejemplos:
133
+ |pais|tipo|cabotage|
134
+ |CO |roundtrip|nil|
135
+ @co
136
+ @oneway
137
+ Ejemplos:
138
+ |pais|tipo|cabotage|
139
+ |CO |oneway|nil|
140
+ @co
141
+ @multipledestinations
142
+ Ejemplos:
143
+ |pais|tipo|cabotage|
144
+ |CO |multipledestinations|nil|
145
+ @cr
146
+ @roundtrip
147
+ Ejemplos:
148
+ |pais|tipo|cabotage|
149
+ |CR |roundtrip|nil|
150
+ @cr
151
+ @oneway
152
+ Ejemplos:
153
+ |pais|tipo|cabotage|
154
+ |CR |oneway|nil|
155
+ @cr
156
+ @multipledestinations
157
+ Ejemplos:
158
+ |pais|tipo|cabotage|
159
+ |CR |multipledestinations|nil|
160
+ @ve
161
+ @roundtrip
162
+ Ejemplos:
163
+ |pais|tipo|cabotage|
164
+ |VE |roundtrip|nil|
165
+ @ve
166
+ @oneway
167
+ Ejemplos:
168
+ |pais|tipo|cabotage|
169
+ |VE |oneway|nil|
170
+ @ve
171
+ @multipledestinations
172
+ Ejemplos:
173
+ |pais|tipo|cabotage|
174
+ |VE |multipledestinations|nil|
175
+ @pa
176
+ @roundtrip
177
+ Ejemplos:
178
+ |pais|tipo|cabotage|
179
+ |PA |roundtrip|nil|
180
+ @pa
181
+ @oneway
182
+ Ejemplos:
183
+ |pais|tipo|cabotage|
184
+ |PA |oneway|nil|
185
+ @pa
186
+ @multipledestinations
187
+ Ejemplos:
188
+ |pais|tipo|cabotage|
189
+ |PA |multipledestinations|nil|
190
+ @ec
191
+ @roundtrip
192
+ Ejemplos:
193
+ |pais|tipo|cabotage|
194
+ |EC |roundtrip|nil|
195
+ @ec
196
+ @oneway
197
+ Ejemplos:
198
+ |pais|tipo|cabotage|
199
+ |EC |oneway|nil|
200
+ @ec
201
+ @multipledestinations
202
+ Ejemplos:
203
+ |pais|tipo|cabotage|
204
+ |EC |multipledestinations|nil|
205
+ @cl
206
+ @roundtrip
207
+ Ejemplos:
208
+ |pais|tipo|cabotage|
209
+ |CL |roundtrip|nil|
210
+ @cl
211
+ @oneway
212
+ Ejemplos:
213
+ |pais|tipo|cabotage|
214
+ |CL |oneway|nil|
215
+ @cl
216
+ @multipledestinations
217
+ Ejemplos:
218
+ |pais|tipo|cabotage|
219
+ |CL |multipledestinations|nil|
220
+ @pr
221
+ @roundtrip
222
+ Ejemplos:
223
+ |pais|tipo|cabotage|
224
+ |PR |roundtrip|nil|
225
+ @pr
226
+ @oneway
227
+ Ejemplos:
228
+ |pais|tipo|cabotage|
229
+ |PR |oneway|nil|
230
+ @pr
231
+ @multipledestinations
232
+ Ejemplos:
233
+ |pais|tipo|cabotage|
234
+ |PR |multipledestinations|nil|
235
+
@@ -0,0 +1,62 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.low_cost
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @low_cost
7
+ Esquema del escenario: Ingresar a la pagina de resultados
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "<from>" y destino "<to>" de tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Seteo el proveedor "<prov>"
12
+ Cuando Espero que termine de cargar
13
+ Entonces Verifico que traiga resultados
14
+ Cuando Elijo un itinerario y paso a checkout
15
+ Cuando Verifico que ingrese al checkout
16
+ Y Verifico el pixel de Efrontier
17
+ Y Verifico el pixel de trackeame en checkout
18
+ Y Verifico el tag de remarketing de facebook
19
+ Entonces verifico que los precios de las cuotas se muestran correctamente
20
+ Y Verifico que se muestren la caja de clientes felices
21
+ Entonces Completo el formulario de pasajeros
22
+ Y Completo el formulario de tarjeta
23
+ Y Completo los datos de resolucion AFIP
24
+ Y Completo los datos de contacto
25
+ Y Si pide factura fiscal, Completo los campos de factura fiscal
26
+ Y Realizo la compra
27
+ Entonces Verifico que dirija a la pagina de gracias
28
+ Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
29
+ Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
30
+ Entonces Si debo completar de vuelta el formulario, completo el formulario
31
+ Y Verifico que genere id cro
32
+ Y Verifico el pixel de trackeame en gracias
33
+ Y Verifico el pixel de Efrontier
34
+ Y Verifico el segundo tag de google en resultado de checkout
35
+
36
+ @br
37
+ Ejemplos:
38
+ |pais|tipo|cabotage|prov|from|to|
39
+ |BR|roundtrip|true|PSR|SAO|RIO|
40
+ |BR|oneway|true|PSR|SAO|RIO|
41
+ |BR|roundtrip|true|OC6|REC|POA|
42
+ |BR|oneway|true|OC6|SAO|RIO|
43
+ |BR|roundtrip|true|GOL|SAO|RIO|
44
+ |BR|oneway|true|GOL|SAO|RIO|
45
+ |BR|roundtrip|true|TAM|SAO|RIO|
46
+ |BR|oneway|true|TAM|SAO|RIO|
47
+ |BR|roundtrip|true|AZD|SAO|RIO|
48
+ |BR|oneway|true|AZD|SAO|RIO|
49
+
50
+ # @br
51
+ # Ejemplos:
52
+ # |pais|tipo|cabotage|prov|from|to|
53
+ # |BR|roundtrip|true|GOL|SAO|RIO|
54
+ # |BR|oneway|true|GOL|SAO|RIO|
55
+ # |BR|roundtrip|true|GOL|REC|POA|
56
+ # |BR|oneway|true|GOL|SAO|RIO|
57
+ # |BR|roundtrip|true|GOL|SAO|RIO|
58
+ # |BR|oneway|true|GOL|SAO|RIO|
59
+ # |BR|roundtrip|true|GOL|SAO|RIO|
60
+ # |BR|oneway|true|GOL|SAO|RIO|
61
+ # |BR|roundtrip|true|GOL|SAO|RIO|
62
+ # |BR|oneway|true|GOL|SAO|RIO|
@@ -0,0 +1,50 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.online_payment
4
+ Se verifica que los nuevos metodos de pago funcionen correctamente
5
+
6
+ @online_payment
7
+ Esquema del escenario: Ingresar al checkout y elegir pago online
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Elijo un itinerario y paso a checkout
12
+ Cuando Verifico que ingrese al checkout
13
+ Y Fuerzo la cookie de abztesting el valor "showCashPayment" al "15"
14
+ Y recargo la pagina
15
+ Cuando Verifico que ingrese al checkout
16
+ Entonces Valido los valores del desglose del checkout
17
+ Entonces Completo el formulario de pasajeros
18
+ Y Completo el formulario de pago online
19
+ Y Completo los datos de contacto
20
+ Y Si pide factura fiscal, Completo los campos de factura fiscal
21
+ Y Realizo la compra
22
+ Cuando aparece el popup de confirmacion de pago
23
+ Entonces elijo la opcion otro metodo
24
+ Entonces Verifico que vuelva al checkout correctamente
25
+ Cuando Realizo la compra
26
+ Cuando aparece el popup de confirmacion de pago
27
+ Entonces elijo la opcion confirmar pago
28
+ Entonces Verifico que dirija a la pagina de gracias
29
+ Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
30
+ Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
31
+ Entonces Si debo completar de vuelta el formulario, completo el formulario
32
+ Y Verifico que genere id cro
33
+ Y Levanto los datos del vuelo
34
+ Y Verifico los pasos para hacer el pago online
35
+
36
+ @ar
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|cabotage|
40
+ |AR |roundtrip|nil|
41
+ @ar
42
+ @oneway
43
+ Ejemplos:
44
+ |pais|tipo|cabotage|
45
+ |AR |oneway|nil|
46
+ @ar
47
+ @multipledestinations
48
+ Ejemplos:
49
+ |pais|tipo|cabotage|
50
+ |AR |multipledestinations|nil|
@@ -0,0 +1,103 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.price_jump
4
+ Se verifica la funcionalidad de diferencia de precios
5
+
6
+ @price_jump
7
+ Esquema del escenario: Ingresar a la pagina del checkout, formar el cambio de precio, verificar.
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Elijo un itinerario y paso a checkout
12
+ Cuando Verifico que ingrese al checkout
13
+ Entonces Completo el formulario de pasajeros
14
+ Y Completo el formulario de tarjeta
15
+ Y elijo mas de una cuota con intereses
16
+ Y Si permite cobertura, Elijo "chequear" si quiero cobertura
17
+ Y Completo los datos de resolucion AFIP
18
+ Y Completo los datos de contacto
19
+ Y Si pide factura fiscal, Completo los campos de factura fiscal
20
+ Y completo el mail de contacto para forzar cambio de precio
21
+ Y Realizo la compra
22
+ Cuando Espero que cargue el popup de cambio de precio
23
+ Entonces Verifico el popup de cambio de precio
24
+ Y Elijo otro vuelo por el que cambio de vuelo
25
+ Entonces Verifico que dirija a la pagina de gracias
26
+ Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
27
+ Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
28
+ Entonces Si debo completar de vuelta el formulario, completo datos faltantes del formulario
29
+ Y elijo mas de una cuota con intereses
30
+ Y completo el mail de contacto para forzar cambio de precio
31
+ Y Realizo la compra
32
+ Cuando Espero que cargue el popup de cambio de precio
33
+ Entonces Verifico el popup de cambio de precio
34
+ Y Elijo el mismo vuelo que cambio de precio
35
+ Y Espero que cargue las preguntas de riesgo
36
+ Y Si se muestran las preguntas de riesgo, Completo las preguntas de riesgo
37
+ Entonces Verifico que dirija a la pagina de gracias
38
+ Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
39
+ Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
40
+ Entonces Si debo completar de vuelta el formulario, completo el formulario
41
+ Y Verifico que genere id cro
42
+ Y Verifico que el nuevo precio final sea el correcto
43
+
44
+ @ar
45
+ @roundtrip
46
+ Ejemplos:
47
+ |pais|tipo|cabotage|
48
+ |AR |roundtrip|nil|
49
+ @ar
50
+ @oneway
51
+ Ejemplos:
52
+ |pais|tipo|cabotage|
53
+ |AR |oneway|nil|
54
+ @ar
55
+ @multipledestinations
56
+ Ejemplos:
57
+ |pais|tipo|cabotage|
58
+ |AR |multipledestinations|nil|
59
+ @br
60
+ @roundtrip
61
+ Ejemplos:
62
+ |pais|tipo|cabotage|
63
+ |BR |roundtrip|nil|
64
+ @br
65
+ @oneway
66
+ Ejemplos:
67
+ |pais|tipo|cabotage|
68
+ |BR |oneway|nil|
69
+ @br
70
+ @multipledestinations
71
+ Ejemplos:
72
+ |pais|tipo|cabotage|
73
+ |BR |multipledestinations|nil|
74
+ @mx
75
+ @roundtrip
76
+ Ejemplos:
77
+ |pais|tipo|cabotage|
78
+ |MX |roundtrip|nil|
79
+ @mx
80
+ @oneway
81
+ Ejemplos:
82
+ |pais|tipo|cabotage|
83
+ |MX |oneway|nil|
84
+ @mx
85
+ @multipledestinations
86
+ Ejemplos:
87
+ |pais|tipo|cabotage|
88
+ |MX |multipledestinations|nil|
89
+ @us
90
+ @roundtrip
91
+ Ejemplos:
92
+ |pais|tipo|cabotage|
93
+ |US |roundtrip|nil|
94
+ @us
95
+ @oneway
96
+ Ejemplos:
97
+ |pais|tipo|cabotage|
98
+ |US |oneway|nil|
99
+ @us
100
+ @multipledestinations
101
+ Ejemplos:
102
+ |pais|tipo|cabotage|
103
+ |US |multipledestinations|nil|