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,68 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.home
4
+ Se verifica la correcta carga y funcionamiento de la home de landing
5
+
6
+ @home
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 se muestre la caja de busqueda
12
+ Y que se muestre los links vuelo a destino SEO
13
+ Y que se muestre la caja de ofertas
14
+ Y que se muestre las descripciones de beneficios despegar
15
+ Y que se muestre la descripcion de vuelos mas baratos
16
+ #Y que se muestren las opiniones de pasajeros
17
+ Y que se muestren los links de pasajes aereos internacionales
18
+ Y que se muestren correctamente los destinos mas buscados
19
+ Y verifico si alguna imagen no esta disponible
20
+
21
+ @ar
22
+ Ejemplos:
23
+ |pais|
24
+ |AR |
25
+ @br
26
+ Ejemplos:
27
+ |pais|
28
+ |BR |
29
+ @co
30
+ Ejemplos:
31
+ |pais|
32
+ |CO |
33
+ @cl
34
+ Ejemplos:
35
+ |pais|
36
+ |CL |
37
+ @cr
38
+ Ejemplos:
39
+ |pais|
40
+ |CR |
41
+ @ec
42
+ Ejemplos:
43
+ |pais|
44
+ |EC |
45
+ @mx
46
+ Ejemplos:
47
+ |pais|
48
+ |MX |
49
+ @pa
50
+ Ejemplos:
51
+ |pais|
52
+ |PA |
53
+ @pe
54
+ Ejemplos:
55
+ |pais|
56
+ |PE |
57
+ @us
58
+ Ejemplos:
59
+ |pais|
60
+ |US |
61
+ @uy
62
+ Ejemplos:
63
+ |pais|
64
+ |UY |
65
+ @ve
66
+ Ejemplos:
67
+ |pais|
68
+ |VE |
@@ -0,0 +1,149 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.integration
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @integration
7
+ Esquema del escenario: Ingresar a la home de landing
8
+ Cuando Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Y Verifico que la url sea la correcta
15
+ Y Verifico que la ciudad destino sea la que se eligio en home
16
+ Entonces Levanto los datos de clusters
17
+ Y Verifico que no vengan mas de diez resultados por pagina
18
+ Y Verifico que traiga precios con formato correcto y positivos
19
+ Y Verifico que traiga aeropuertos y concuerden con la ciudad buscada
20
+ Y Verifico que traiga fechas en formato correcto
21
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
22
+ Cuando Espero que termine de cargar
23
+ Cuando Verifico la pagina donde ingresa
24
+ Cuando Si ingreso resultados, Espero que termine de cargar
25
+ Entonces Si ingreso resultados, Verifico que sea la pagina de resultados correcta
26
+ Y Si ingreso resultados, Verifico que traiga resultados
27
+ Y Si ingreso resultados, Verifico que el valor elejido en landing se encuentre en la lista de resultados
28
+ Y Si ingreso checkout, Verifico que ingrese al checkout
29
+
30
+ @ar
31
+ @roundtrip
32
+ Ejemplos:
33
+ |pais|tipo|
34
+ |AR |roundtrip|
35
+ @ar
36
+ @oneway
37
+ Ejemplos:
38
+ |pais|tipo|
39
+ |AR |oneway|
40
+ @br
41
+ @roundtrip
42
+ Ejemplos:
43
+ |pais|tipo|
44
+ |BR |roundtrip|
45
+ @br
46
+ @oneway
47
+ Ejemplos:
48
+ |pais|tipo|
49
+ |BR |oneway|
50
+ @co
51
+ @roundtrip
52
+ Ejemplos:
53
+ |pais|tipo|
54
+ |CO |roundtrip|
55
+ @co
56
+ @oneway
57
+ Ejemplos:
58
+ |pais|tipo|
59
+ |CO |oneway|
60
+ @cl
61
+ @roundtrip
62
+ Ejemplos:
63
+ |pais|tipo|
64
+ |CL |roundtrip|
65
+ @cl
66
+ @oneway
67
+ Ejemplos:
68
+ |pais|tipo|
69
+ |CL |oneway|
70
+ @cr
71
+ @roundtrip
72
+ Ejemplos:
73
+ |pais|tipo|
74
+ |CR |roundtrip|
75
+ @cr
76
+ @oneway
77
+ Ejemplos:
78
+ |pais|tipo|
79
+ |CR |oneway|
80
+ @ec
81
+ @roundtrip
82
+ Ejemplos:
83
+ |pais|tipo|
84
+ |EC |roundtrip|
85
+ @ec
86
+ @oneway
87
+ Ejemplos:
88
+ |pais|tipo|
89
+ |EC |oneway|
90
+ @mx
91
+ @roundtrip
92
+ Ejemplos:
93
+ |pais|tipo|
94
+ |MX |roundtrip|
95
+ @mx
96
+ @oneway
97
+ Ejemplos:
98
+ |pais|tipo|
99
+ |MX |oneway|
100
+ @pa
101
+ @roundtrip
102
+ Ejemplos:
103
+ |pais|tipo|
104
+ |PA |roundtrip|
105
+ @pa
106
+ @oneway
107
+ Ejemplos:
108
+ |pais|tipo|
109
+ |PA |oneway|
110
+ @pe
111
+ @roundtrip
112
+ Ejemplos:
113
+ |pais|tipo|
114
+ |PE |roundtrip|
115
+ @pe
116
+ @oneway
117
+ Ejemplos:
118
+ |pais|tipo|
119
+ |PE |oneway|
120
+ @us
121
+ @roundtrip
122
+ Ejemplos:
123
+ |pais|tipo|
124
+ |US |roundtrip|
125
+ @us
126
+ @oneway
127
+ Ejemplos:
128
+ |pais|tipo|
129
+ |US |oneway|
130
+ @uy
131
+ @roundtrip
132
+ Ejemplos:
133
+ |pais|tipo|
134
+ |UY |roundtrip|
135
+ @uy
136
+ @oneway
137
+ Ejemplos:
138
+ |pais|tipo|
139
+ |UY |oneway|
140
+ @ve
141
+ @roundtrip
142
+ Ejemplos:
143
+ |pais|tipo|
144
+ |VE |roundtrip|
145
+ @ve
146
+ @oneway
147
+ Ejemplos:
148
+ |pais|tipo|
149
+ |VE |oneway|
@@ -0,0 +1,169 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.long_tail
4
+ Se verifican las nuevas urls de destino
5
+
6
+ @long_tail
7
+ Esquema del escenario: Ingresar a la home de landing
8
+ Cuando Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Y Verifico las nuevas urls de vuelos a destino por aerolinea
15
+ Cuando Espero que termine de cargar
16
+ Entonces Verifico que la pagina no rompa
17
+ Entonces Verifico que traiga resultados de landings
18
+ Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
19
+ Cuando Elijo un aeropuerto outbound a aplicar
20
+ Entonces Filtro por aeropuerto
21
+ Cuando Espero que termine de cargar
22
+ Entonces Verifico que la pagina no rompa
23
+ Entonces Verifico que los contadores respecto al aeropuerto sean correctos
24
+ Y Verifico que la primer pagina muestre correctamente los filtros de aeropuertos outbound
25
+ Cuando Limpio el filtro de aeropuertos outbound
26
+ Cuando Espero que termine de cargar
27
+ Cuando Limpio el filtro de aerolineas
28
+ Cuando Espero que termine de cargar
29
+ Entonces Verifico que la pagina no rompa
30
+ Y Verifico que aparezcan los links propuestos de vuelos a destino por aerolinea
31
+ Entonces Si es ida y vuelta, Verifico las nuevas urls de vuelos a destino por aeropuerto de llegada
32
+ Cuando Si es ida y vuelta, Espero que termine de cargar
33
+ Entonces Si es ida y vuelta, Verifico que la pagina no rompa
34
+ Y Si es ida y vuelta, Verifico que la primer pagina muestre correctamente los filtros de aeropuertos inbound
35
+ Cuando Si es ida y vuelta, Limpio el filtro de aeropuertos inbound
36
+ Cuando Si es ida y vuelta, Espero que termine de cargar
37
+ Entonces Si es ida y vuelta, Verifico que la pagina no rompa
38
+ Entonces Si es ida y vuelta, Verifico que traiga resultados de landings
39
+ Y Si es ida y vuelta, Verifico que aparezcan los links propuestos de vuelos a destino por aeropuerto de llegada
40
+ Cuando Verifico las nuevas urls de vuelos a destino por aeropuerto de salida
41
+ Cuando Espero que termine de cargar
42
+ Entonces Verifico que la pagina no rompa
43
+ Entonces Verifico que traiga resultados de landings
44
+ Y Verifico que la primer pagina muestre correctamente los filtros de aeropuertos outbound
45
+ Cuando Limpio el filtro de aeropuertos outbound
46
+ Cuando Espero que termine de cargar
47
+ Entonces Verifico que la pagina no rompa
48
+ Y Verifico que aparezcan los links propuestos de vuelos a destino por aeropuerto de salida
49
+
50
+ @ar
51
+ @roundtrip
52
+ Ejemplos:
53
+ |pais|tipo|
54
+ |AR |roundtrip|
55
+ @ar
56
+ @oneway
57
+ Ejemplos:
58
+ |pais|tipo|
59
+ |AR |oneway|
60
+ @br
61
+ @roundtrip
62
+ Ejemplos:
63
+ |pais|tipo|
64
+ |BR |roundtrip|
65
+ @br
66
+ @oneway
67
+ Ejemplos:
68
+ |pais|tipo|
69
+ |BR |oneway|
70
+ @co
71
+ @roundtrip
72
+ Ejemplos:
73
+ |pais|tipo|
74
+ |CO |roundtrip|
75
+ @co
76
+ @oneway
77
+ Ejemplos:
78
+ |pais|tipo|
79
+ |CO |oneway|
80
+ @cl
81
+ @roundtrip
82
+ Ejemplos:
83
+ |pais|tipo|
84
+ |CL |roundtrip|
85
+ @cl
86
+ @oneway
87
+ Ejemplos:
88
+ |pais|tipo|
89
+ |CL |oneway|
90
+ @cr
91
+ @roundtrip
92
+ Ejemplos:
93
+ |pais|tipo|
94
+ |CR |roundtrip|
95
+ @cr
96
+ @oneway
97
+ Ejemplos:
98
+ |pais|tipo|
99
+ |CR |oneway|
100
+ @ec
101
+ @roundtrip
102
+ Ejemplos:
103
+ |pais|tipo|
104
+ |EC |roundtrip|
105
+ @ec
106
+ @oneway
107
+ Ejemplos:
108
+ |pais|tipo|
109
+ |EC |oneway|
110
+ @mx
111
+ @roundtrip
112
+ Ejemplos:
113
+ |pais|tipo|
114
+ |MX |roundtrip|
115
+ @mx
116
+ @oneway
117
+ Ejemplos:
118
+ |pais|tipo|
119
+ |MX |oneway|
120
+ @pa
121
+ @roundtrip
122
+ Ejemplos:
123
+ |pais|tipo|
124
+ |PA |roundtrip|
125
+ @pa
126
+ @oneway
127
+ Ejemplos:
128
+ |pais|tipo|
129
+ |PA |oneway|
130
+ @pe
131
+ @roundtrip
132
+ Ejemplos:
133
+ |pais|tipo|
134
+ |PE |roundtrip|
135
+ @pe
136
+ @oneway
137
+ Ejemplos:
138
+ |pais|tipo|
139
+ |PE |oneway|
140
+ @us
141
+ @roundtrip
142
+ Ejemplos:
143
+ |pais|tipo|
144
+ |US |roundtrip|
145
+ @us
146
+ @oneway
147
+ Ejemplos:
148
+ |pais|tipo|
149
+ |US |oneway|
150
+ @uy
151
+ @roundtrip
152
+ Ejemplos:
153
+ |pais|tipo|
154
+ |UY |roundtrip|
155
+ @uy
156
+ @oneway
157
+ Ejemplos:
158
+ |pais|tipo|
159
+ |UY |oneway|
160
+ @ve
161
+ @roundtrip
162
+ Ejemplos:
163
+ |pais|tipo|
164
+ |VE |roundtrip|
165
+ @ve
166
+ @oneway
167
+ Ejemplos:
168
+ |pais|tipo|
169
+ |VE |oneway|
@@ -0,0 +1,152 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.matrix
4
+ Se verifica que al aplicar matriz sobre escalas|aerolineas en resultados de landing este se aplique correctamente.
5
+
6
+ @matrix
7
+ Esquema del escenario: Ingresar a resultados de landing, filtrar por alguna escala|aerolinea en la matriz y verificar que la pagina no rompa y que los clusters sean correctos
8
+ Cuando Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Cuando Elijo en la matriz una escala a aplicar
15
+ Entonces Filtro por matriz una escala
16
+ Cuando Espero que termine de cargar
17
+ Entonces Verifico que la pagina no rompa
18
+ Y Verifico que la primer pagina muestre correctamente los filtros de escalas en matriz
19
+ Y Valido mensaje del filtro por escala
20
+ Cuando Limpio la matriz
21
+ Cuando Espero que termine de cargar
22
+ Entonces Verifico que la pagina no rompa
23
+ Cuando Elijo en la matriz una aerolinea a aplicar
24
+ Entonces Filtro por matriz una aerolinea
25
+ Cuando Espero que termine de cargar
26
+ Entonces Verifico que la pagina no rompa
27
+ Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
28
+ Y Valido mensaje del filtro por aerolinea
29
+ Cuando Limpio la matriz
30
+ Cuando Espero que termine de cargar
31
+ Entonces Verifico que la pagina no rompa
32
+
33
+ @ar
34
+ @roundtrip
35
+ Ejemplos:
36
+ |pais|tipo|
37
+ |AR |roundtrip|
38
+ @ar
39
+ @oneway
40
+ Ejemplos:
41
+ |pais|tipo|
42
+ |AR |oneway|
43
+ @br
44
+ @roundtrip
45
+ Ejemplos:
46
+ |pais|tipo|
47
+ |BR |roundtrip|
48
+ @br
49
+ @oneway
50
+ Ejemplos:
51
+ |pais|tipo|
52
+ |BR |oneway|
53
+ @co
54
+ @roundtrip
55
+ Ejemplos:
56
+ |pais|tipo|
57
+ |CO |roundtrip|
58
+ @co
59
+ @oneway
60
+ Ejemplos:
61
+ |pais|tipo|
62
+ |CO |oneway|
63
+ @cl
64
+ @roundtrip
65
+ Ejemplos:
66
+ |pais|tipo|
67
+ |CL |roundtrip|
68
+ @cl
69
+ @oneway
70
+ Ejemplos:
71
+ |pais|tipo|
72
+ |CL |oneway|
73
+ @cr
74
+ @roundtrip
75
+ Ejemplos:
76
+ |pais|tipo|
77
+ |CR |roundtrip|
78
+ @cr
79
+ @oneway
80
+ Ejemplos:
81
+ |pais|tipo|
82
+ |CR |oneway|
83
+ @ec
84
+ @roundtrip
85
+ Ejemplos:
86
+ |pais|tipo|
87
+ |EC |roundtrip|
88
+ @ec
89
+ @oneway
90
+ Ejemplos:
91
+ |pais|tipo|
92
+ |EC |oneway|
93
+ @mx
94
+ @roundtrip
95
+ Ejemplos:
96
+ |pais|tipo|
97
+ |MX |roundtrip|
98
+ @mx
99
+ @oneway
100
+ Ejemplos:
101
+ |pais|tipo|
102
+ |MX |oneway|
103
+ @pa
104
+ @roundtrip
105
+ Ejemplos:
106
+ |pais|tipo|
107
+ |PA |roundtrip|
108
+ @pa
109
+ @oneway
110
+ Ejemplos:
111
+ |pais|tipo|
112
+ |PA |oneway|
113
+ @pe
114
+ @roundtrip
115
+ Ejemplos:
116
+ |pais|tipo|
117
+ |PE |roundtrip|
118
+ @pe
119
+ @oneway
120
+ Ejemplos:
121
+ |pais|tipo|
122
+ |PE |oneway|
123
+ @us
124
+ @roundtrip
125
+ Ejemplos:
126
+ |pais|tipo|
127
+ |US |roundtrip|
128
+ @us
129
+ @oneway
130
+ Ejemplos:
131
+ |pais|tipo|
132
+ |US |oneway|
133
+ @uy
134
+ @roundtrip
135
+ Ejemplos:
136
+ |pais|tipo|
137
+ |UY |roundtrip|
138
+ @uy
139
+ @oneway
140
+ Ejemplos:
141
+ |pais|tipo|
142
+ |UY |oneway|
143
+ @ve
144
+ @roundtrip
145
+ Ejemplos:
146
+ |pais|tipo|
147
+ |VE |roundtrip|
148
+ @ve
149
+ @oneway
150
+ Ejemplos:
151
+ |pais|tipo|
152
+ |VE |oneway|