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,286 @@
1
+ #language: es
2
+ #@landing
3
+ Característica: landing.checkout
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ #@checkout
7
+ Esquema del escenario: Ingresar a la home de landing
8
+ Cuando Ingreso a la home de landing de "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Cuando Espero que termine de cargar la home de landing
11
+ Cuando Elijo un link para pasar a los resultados de landing
12
+ Cuando Ingreso a resultados de landing
13
+ Entonces Verifico que la pagina no rompa
14
+ Entonces Verifico que traiga resultados de landings
15
+ Cuando Elijo el tipo de vuelo "<tipo>"
16
+ Entonces Verifico que la pagina no rompa
17
+ Entonces Verifico que traiga resultados de landings
18
+ Entonces Levanto los datos de clusters
19
+ Y Verifico que se cree la cookie landingTestPrice con mas "9" por ciento
20
+ Y recargo la pagina
21
+ Y Seteo AbzTesting redirect al "85"
22
+ Y recargo la pagina
23
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
24
+ Cuando Verifico que ingrese al checkout
25
+
26
+ @ar
27
+ @roundtrip
28
+ Ejemplos:
29
+ |pais|tipo|
30
+ |AR |roundtrip|
31
+ @br
32
+ @roundtrip
33
+ Ejemplos:
34
+ |pais|tipo|
35
+ |BR |roundtrip|
36
+ @co
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |CO |roundtrip|
41
+ @cl
42
+ @roundtrip
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |CL |roundtrip|
46
+ @cr
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |CR |roundtrip|
51
+ @ec
52
+ @roundtrip
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |EC |roundtrip|
56
+ @pa
57
+ @roundtrip
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |PA |roundtrip|
61
+ @pe
62
+ @roundtrip
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |PE |roundtrip|
66
+ @us
67
+ @roundtrip
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |US |roundtrip|
71
+ @uy
72
+ @roundtrip
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |UY |roundtrip|
76
+ @ve
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |VE |roundtrip|
81
+
82
+ @checkout
83
+ Esquema del escenario: Ingresar a la home de landing
84
+ Cuando Ingreso a la home de landing de "<pais>"
85
+ Entonces Verifico que la pagina no rompa
86
+ Cuando Espero que termine de cargar la home de landing
87
+ Cuando Elijo un link para pasar a los resultados de landing
88
+ Cuando Ingreso a resultados de landing
89
+ Entonces Verifico que la pagina no rompa
90
+ Entonces Verifico que traiga resultados de landings
91
+ Cuando Elijo el tipo de vuelo "<tipo>"
92
+ Entonces Verifico que la pagina no rompa
93
+ Entonces Verifico que traiga resultados de landings
94
+ Entonces Levanto los datos de clusters
95
+ Y Verifico que se cree la cookie landingTestPrice con menos "5" por ciento
96
+ Y recargo la pagina
97
+ Y Seteo AbzTesting redirect al "85"
98
+ Y recargo la pagina
99
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
100
+ Cuando Espero que termine de cargar
101
+ Entonces Verifico que sea la pagina de resultados correcta
102
+ Y Verifico que traiga resultados
103
+
104
+ @ar
105
+ @roundtrip
106
+ Ejemplos:
107
+ |pais|tipo|
108
+ |AR |roundtrip|
109
+ @br
110
+ @roundtrip
111
+ Ejemplos:
112
+ |pais|tipo|
113
+ |BR |roundtrip|
114
+
115
+ @checkout
116
+ Esquema del escenario: Ingresar a la home de landing
117
+ Cuando Ingreso a la home de landing de "<pais>"
118
+ Entonces Verifico que la pagina no rompa
119
+ Cuando Espero que termine de cargar la home de landing
120
+ Cuando Elijo un link para pasar a los resultados de landing
121
+ Cuando Ingreso a resultados de landing
122
+ Entonces Verifico que la pagina no rompa
123
+ Entonces Verifico que traiga resultados de landings
124
+ Cuando Elijo el tipo de vuelo "<tipo>"
125
+ Entonces Verifico que la pagina no rompa
126
+ Entonces Verifico que traiga resultados de landings
127
+ Entonces Levanto los datos de clusters
128
+ Y Verifico que se cree la cookie landingTestPrice con mas "0" por ciento
129
+ Y recargo la pagina
130
+ Y Seteo AbzTesting redirect al "85"
131
+ Y recargo la pagina
132
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
133
+ Cuando Verifico que ingrese al checkout
134
+
135
+ @ar
136
+ @roundtrip
137
+ Ejemplos:
138
+ |pais|tipo|
139
+ |AR |roundtrip|
140
+ @br
141
+ @roundtrip
142
+ Ejemplos:
143
+ |pais|tipo|
144
+ |BR |roundtrip|
145
+ @co
146
+ @roundtrip
147
+ Ejemplos:
148
+ |pais|tipo|
149
+ |CO |roundtrip|
150
+ @cl
151
+ @roundtrip
152
+ Ejemplos:
153
+ |pais|tipo|
154
+ |CL |roundtrip|
155
+ @cr
156
+ @roundtrip
157
+ Ejemplos:
158
+ |pais|tipo|
159
+ |CR |roundtrip|
160
+ @ec
161
+ @roundtrip
162
+ Ejemplos:
163
+ |pais|tipo|
164
+ |EC |roundtrip|
165
+ @pa
166
+ @roundtrip
167
+ Ejemplos:
168
+ |pais|tipo|
169
+ |PA |roundtrip|
170
+ @pe
171
+ @roundtrip
172
+ Ejemplos:
173
+ |pais|tipo|
174
+ |PE |roundtrip|
175
+ @us
176
+ @roundtrip
177
+ Ejemplos:
178
+ |pais|tipo|
179
+ |US |roundtrip|
180
+ @uy
181
+ @roundtrip
182
+ Ejemplos:
183
+ |pais|tipo|
184
+ |UY |roundtrip|
185
+ @ve
186
+ @roundtrip
187
+ Ejemplos:
188
+ |pais|tipo|
189
+ |VE |roundtrip|
190
+
191
+ @checkout
192
+ Esquema del escenario: Ingresar a la home de landing
193
+ Cuando Ingreso a la home de landing de "<pais>"
194
+ Entonces Verifico que la pagina no rompa
195
+ Cuando Espero que termine de cargar la home de landing
196
+ Cuando Elijo un link para pasar a los resultados de landing
197
+ Cuando Ingreso a resultados de landing
198
+ Entonces Verifico que la pagina no rompa
199
+ Entonces Verifico que traiga resultados de landings
200
+ Cuando Elijo el tipo de vuelo "<tipo>"
201
+ Entonces Verifico que la pagina no rompa
202
+ Entonces Verifico que traiga resultados de landings
203
+ Entonces Levanto los datos de clusters
204
+ Y Verifico que se cree la cookie landingTestPrice con mas "1" por ciento
205
+ Y recargo la pagina
206
+ Y Seteo AbzTesting redirect al "85"
207
+ Y recargo la pagina
208
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
209
+ Cuando Verifico que ingrese al checkout
210
+
211
+ @ar
212
+ @roundtrip
213
+ Ejemplos:
214
+ |pais|tipo|
215
+ |AR |roundtrip|
216
+ @br
217
+ @roundtrip
218
+ Ejemplos:
219
+ |pais|tipo|
220
+ |BR |roundtrip|
221
+
222
+ @checkout
223
+ Esquema del escenario: Ingresar a la home de landing
224
+ Cuando Ingreso a la home de landing de "<pais>"
225
+ Entonces Verifico que la pagina no rompa
226
+ Cuando Espero que termine de cargar la home de landing
227
+ Cuando Elijo un link para pasar a los resultados de landing
228
+ Cuando Ingreso a resultados de landing
229
+ Entonces Verifico que la pagina no rompa
230
+ Entonces Verifico que traiga resultados de landings
231
+ Cuando Elijo el tipo de vuelo "<tipo>"
232
+ Entonces Verifico que la pagina no rompa
233
+ Entonces Verifico que traiga resultados de landings
234
+ Entonces Levanto los datos de clusters
235
+ Y Verifico que se cree la cookie landingTestPrice con menos "5" por ciento
236
+ Y recargo la pagina
237
+ Y Seteo AbzTesting redirect al "85"
238
+ Y recargo la pagina
239
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
240
+ Cuando Verifico que ingrese al checkout
241
+
242
+ @co
243
+ @roundtrip
244
+ Ejemplos:
245
+ |pais|tipo|
246
+ |CO |roundtrip|
247
+ @cl
248
+ @roundtrip
249
+ Ejemplos:
250
+ |pais|tipo|
251
+ |CL |roundtrip|
252
+ @cr
253
+ @roundtrip
254
+ Ejemplos:
255
+ |pais|tipo|
256
+ |CR |roundtrip|
257
+ @ec
258
+ @roundtrip
259
+ Ejemplos:
260
+ |pais|tipo|
261
+ |EC |roundtrip|
262
+ @pa
263
+ @roundtrip
264
+ Ejemplos:
265
+ |pais|tipo|
266
+ |PA |roundtrip|
267
+ @pe
268
+ @roundtrip
269
+ Ejemplos:
270
+ |pais|tipo|
271
+ |PE |roundtrip|
272
+ @us
273
+ @roundtrip
274
+ Ejemplos:
275
+ |pais|tipo|
276
+ |US |roundtrip|
277
+ @uy
278
+ @roundtrip
279
+ Ejemplos:
280
+ |pais|tipo|
281
+ |UY |roundtrip|
282
+ @ve
283
+ @roundtrip
284
+ Ejemplos:
285
+ |pais|tipo|
286
+ |VE |roundtrip|
@@ -0,0 +1,82 @@
1
+ #language: es
2
+ #@landing
3
+ Característica: landing.home_alerts
4
+ Se verifica la correcta carga y funcionamiento de las alertas en la home de landing
5
+
6
+ #@home_alerts
7
+ Esquema del escenario: Ingresar a la home de landing, comprobar que se muestre correctamente
8
+ Cuando Ingreso a la home de landing de "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Cuando Espero que termine de cargar la home de landing
11
+ Entonces Verifico que exista el panel de alertas de home de vuelos
12
+ Cuando Abro el popup de alertas
13
+ Entonces Verifico que cargue correctamente el popup de alertas
14
+ Entonces Comparo el campo origen en alertas de home de vuelos
15
+ Entonces Verifico que el campo destino sea nulo
16
+ Cuando Vacio el campo origen
17
+ Cuando Hago click en guardar alerta
18
+ Entonces Validar que el campo origen sea obligatorio
19
+ Entonces Validar que el campo destino sea obligatorio
20
+ Entonces Validar que el campo precio maximo por adulto sea obligatorio
21
+ Entonces Validar que el campo email sea obligatorio
22
+ Cuando Completo el campo origen
23
+ Cuando Completo el campo destino con "Miami"
24
+ Cuando Completo el precio maximo por adulto "999"
25
+ Cuando Completo el email "testvuelos"
26
+ Cuando Hago click en guardar alerta
27
+ Entonces Validar que el campo email tenga un email valido
28
+ Cuando Completo el email "testvuelos@despegar.com"
29
+ Cuando Hago click en guardar alerta
30
+ Entonces Esperar que se muestre el mensaje de alerta
31
+ Y Validar que el mensaje sea correcto
32
+ Cuando Cierro el popup de alertas
33
+ Entonces Validar que se haya cerrado el popup de alertas
34
+
35
+ @ar
36
+ Ejemplos:
37
+ |pais|
38
+ |AR |
39
+ @br
40
+ Ejemplos:
41
+ |pais|
42
+ |BR |
43
+ @co
44
+ Ejemplos:
45
+ |pais|
46
+ |CO |
47
+ @cl
48
+ Ejemplos:
49
+ |pais|
50
+ |CL |
51
+ @cr
52
+ Ejemplos:
53
+ |pais|
54
+ |CR |
55
+ @ec
56
+ Ejemplos:
57
+ |pais|
58
+ |EC |
59
+ @mx
60
+ Ejemplos:
61
+ |pais|
62
+ |MX |
63
+ @pa
64
+ Ejemplos:
65
+ |pais|
66
+ |PA |
67
+ @pe
68
+ Ejemplos:
69
+ |pais|
70
+ |PE |
71
+ @us
72
+ Ejemplos:
73
+ |pais|
74
+ |US |
75
+ @uy
76
+ Ejemplos:
77
+ |pais|
78
+ |UY |
79
+ @ve
80
+ Ejemplos:
81
+ |pais|
82
+ |VE |
@@ -0,0 +1,104 @@
1
+ #language: es
2
+ #@matrix
3
+ Característica: matrix.stops
4
+ Se verifica que al aplicar matriz sobre escalas en resultados de vuelos este se aplique correctamente.
5
+
6
+ #@stops
7
+ Esquema del escenario: Ingresar a resultados, filtrar por alguna escala en la matriz y verificar que la pagina no rompa y que los clusters sean correctos
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 en la matriz una escala a aplicar
12
+ Entonces Filtro por matriz una escala
13
+ Cuando Espero que termine de cargar
14
+ Entonces Verifico que la pagina no rompa
15
+ Y Verifico que la primer pagina muestre correctamente los filtros de escalas en matriz
16
+ Y Valido mensaje del filtro por escala
17
+ Cuando Limpio la matriz
18
+ Cuando Espero que termine de cargar
19
+ Entonces Verifico que la pagina no rompa
20
+
21
+ @ar
22
+ Ejemplos:
23
+ |pais|tipo|cabotage|
24
+ |AR |roundtrip|nil|
25
+ |AR |oneway|nil|
26
+ |AR |roundtrip|true|
27
+ |AR |oneway|true|
28
+ @br
29
+ Ejemplos:
30
+ |pais|tipo|cabotage|
31
+ |BR |oneway|true|
32
+ |BR |roundtrip|true|
33
+ |BR |oneway|nil|
34
+ |BR |roundtrip|nil|
35
+ @co
36
+ Ejemplos:
37
+ |pais|tipo|cabotage|
38
+ |CO |roundtrip|nil|
39
+ |CO |oneway|nil|
40
+ |CO |roundtrip|true|
41
+ |CO |oneway|true|
42
+ @cl
43
+ Ejemplos:
44
+ |pais|tipo|cabotage|
45
+ |CL |roundtrip|nil|
46
+ |CL |oneway|nil|
47
+ |CL |roundtrip|true|
48
+ |CL |oneway|true|
49
+ @cr
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|
52
+ |CR |roundtrip|nil|
53
+ |CR |oneway|nil|
54
+ |CR |roundtrip|true|
55
+ |CR |oneway|true|
56
+ @ec
57
+ Ejemplos:
58
+ |pais|tipo|cabotage|
59
+ |EC |roundtrip|nil|
60
+ |EC |oneway|nil|
61
+ |EC |roundtrip|true|
62
+ |EC |oneway|true|
63
+ @mx
64
+ Ejemplos:
65
+ |pais|tipo|cabotage|
66
+ |MX |roundtrip|nil|
67
+ |MX |oneway|nil|
68
+ |MX |roundtrip|true|
69
+ |MX |oneway|true|
70
+ @pa
71
+ Ejemplos:
72
+ |pais|tipo|cabotage|
73
+ |PA |roundtrip|nil|
74
+ |PA |oneway|nil|
75
+ |PA |roundtrip|true|
76
+ |PA |oneway|true|
77
+ @pe
78
+ Ejemplos:
79
+ |pais|tipo|cabotage|
80
+ |PE |roundtrip|nil|
81
+ |PE |oneway|nil|
82
+ |PE |roundtrip|true|
83
+ |PE |oneway|true|
84
+ @us
85
+ Ejemplos:
86
+ |pais|tipo|cabotage|
87
+ |US |roundtrip|nil|
88
+ |US |oneway|nil|
89
+ |US |roundtrip|true|
90
+ |US |oneway|true|
91
+ @uy
92
+ Ejemplos:
93
+ |pais|tipo|cabotage|
94
+ |UY |roundtrip|nil|
95
+ |UY |oneway|nil|
96
+ |UY |roundtrip|true|
97
+ |UY |oneway|true|
98
+ @ve
99
+ Ejemplos:
100
+ |pais|tipo|cabotage|
101
+ |VE |roundtrip|nil|
102
+ |VE |oneway|nil|
103
+ |VE |roundtrip|true|
104
+ |VE |oneway|true|