flights_gui_henry_tests 1.8.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +15 -0
  2. data/Gemfile +3 -0
  3. data/features/data/home-offers-config.csv +883 -0
  4. data/features/data/host.yml +72 -0
  5. data/features/data/miles.yml +216 -0
  6. data/features/data/search.yml +27 -0
  7. data/features/data/sites.yml +39 -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/chat_steps.rb +43 -0
  11. data/features/step_definitions/checkout/checkout_steps.rb +144 -0
  12. data/features/step_definitions/checkout/cupones_steps.rb +26 -0
  13. data/features/step_definitions/checkout/error_messages.rb +251 -0
  14. data/features/step_definitions/checkout/seguros_steps.rb +78 -0
  15. data/features/step_definitions/checkout/thanks_steps.rb +75 -0
  16. data/features/step_definitions/content/contents_steps.rb +140 -0
  17. data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +73 -0
  18. data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +43 -0
  19. data/features/step_definitions/filter/filters_airlines.rb +38 -0
  20. data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
  21. data/features/step_definitions/filter/filters_price_steps.rb +87 -0
  22. data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
  23. data/features/step_definitions/filter/filters_time_steps.rb +143 -0
  24. data/features/step_definitions/filter/matrix_steps.rb +249 -0
  25. data/features/step_definitions/landing/landing_checkout_steps.rb +45 -0
  26. data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
  27. data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
  28. data/features/step_definitions/landing/landing_home_steps.rb +82 -0
  29. data/features/step_definitions/landing/landing_long_tail.rb +58 -0
  30. data/features/step_definitions/landing/landing_negative_steps.rb +127 -0
  31. data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
  32. data/features/step_definitions/landing/landing_steps.rb +325 -0
  33. data/features/step_definitions/orders/orders.rb +67 -0
  34. data/features/step_definitions/others/advancedgui_steps.rb +28 -0
  35. data/features/step_definitions/others/advancednogui_steps.rb +34 -0
  36. data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
  37. data/features/step_definitions/others/flights_tracker_steps.rb +73 -0
  38. data/features/step_definitions/others/generic_steps.rb +35 -0
  39. data/features/step_definitions/others/newsletter_steps.rb +50 -0
  40. data/features/step_definitions/others/one_day_search.rb +58 -0
  41. data/features/step_definitions/others/print_steps.rb +26 -0
  42. data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
  43. data/features/step_definitions/others/recommendation_steps.rb +80 -0
  44. data/features/step_definitions/others/render_steps.rb +70 -0
  45. data/features/step_definitions/others/tag_steps.rb +157 -0
  46. data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
  47. data/features/step_definitions/results/load_steps.rb +69 -0
  48. data/features/step_definitions/results/results_steps.rb +21 -0
  49. data/features/step_definitions/results/search_steps.rb +82 -0
  50. data/features/step_definitions/search/alerts_steps.rb +132 -0
  51. data/features/step_definitions/search/basefare_steps.rb +64 -0
  52. data/features/step_definitions/search/bestprices_steps.rb +70 -0
  53. data/features/step_definitions/search/cross_sell_row_hoteles.rb +78 -0
  54. data/features/step_definitions/search/cross_sell_steps.rb +15 -0
  55. data/features/step_definitions/search/delays_steps.rb +67 -0
  56. data/features/step_definitions/search/details_steps.rb +9 -0
  57. data/features/step_definitions/search/ecoflights_steps.rb +9 -0
  58. data/features/step_definitions/search/fenix_steps.rb +119 -0
  59. data/features/step_definitions/search/flight_gui_steps.rb +312 -0
  60. data/features/step_definitions/search/miles_step.rb +13 -0
  61. data/features/step_definitions/search/pagination_steps.rb +41 -0
  62. data/features/step_definitions/search/reviews_step.rb +56 -0
  63. data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
  64. data/features/step_definitions/search/wish_list_steps.rb +123 -0
  65. data/features/support/env.rb +61 -0
  66. data/features/support/lib/clusters/data/datos_new.rb +33 -0
  67. data/features/support/lib/clusters/details/details_cluster.rb +30 -0
  68. data/features/support/lib/clusters/results/landing_cluster.rb +29 -0
  69. data/features/support/lib/clusters/results/render_cluster.rb +43 -0
  70. data/features/support/lib/clusters/results_cluster.rb +140 -0
  71. data/features/support/lib/clusters.rb +5 -0
  72. data/features/support/lib/helpers/browser.rb +212 -0
  73. data/features/support/lib/helpers/checkout.rb +31 -0
  74. data/features/support/lib/helpers/clusters.rb +234 -0
  75. data/features/support/lib/helpers/landing.rb +117 -0
  76. data/features/support/lib/helpers/render.rb +135 -0
  77. data/features/support/lib/helpers.rb +5 -0
  78. data/features/support/lib/price.rb +66 -0
  79. data/features/support/lib/services/fenix.rb +14 -0
  80. data/features/support/lib/services/landing.rb +18 -0
  81. data/features/support/lib/services/results.rb +62 -0
  82. data/features/support/lib/services.rb +4 -0
  83. data/features/support/matchers.rb +120 -0
  84. data/features/support/redefinitions.rb +42 -0
  85. data/features/tests/checkout/agency.feature +33 -0
  86. data/features/tests/checkout/button_cac.feature +52 -0
  87. data/features/tests/checkout/chat.feature +20 -0
  88. data/features/tests/checkout/cupones.feature +54 -0
  89. data/features/tests/checkout/error_messages.feature +64 -0
  90. data/features/tests/checkout/integration.feature +215 -0
  91. data/features/tests/checkout/low_cost.feature +55 -0
  92. data/features/tests/checkout/seguros.feature +37 -0
  93. data/features/tests/contents/costs.feature +29 -0
  94. data/features/tests/contents/rules.feature +58 -0
  95. data/features/tests/contents/webcheckin.feature +26 -0
  96. data/features/tests/desambiguation/airports.feature +89 -0
  97. data/features/tests/desambiguation/city.feature +86 -0
  98. data/features/tests/filters/filters.feature +160 -0
  99. data/features/tests/fixes/advancedgui.feature +171 -0
  100. data/features/tests/fixes/advancednogui.feature +60 -0
  101. data/features/tests/fixes/book_no_gui.feature +21 -0
  102. data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
  103. data/features/tests/fixes/facebook.feature +31 -0
  104. data/features/tests/fixes/landing_home_alerts.feature +82 -0
  105. data/features/tests/fixes/matrix_stops.feature +104 -0
  106. data/features/tests/fixes/one_day_search.feature +63 -0
  107. data/features/tests/fixes/print.feature +87 -0
  108. data/features/tests/fixes/searches_no_gui.feature +85 -0
  109. data/features/tests/landing/landing_alerts.feature +93 -0
  110. data/features/tests/landing/landing_checkout.feature +286 -0
  111. data/features/tests/landing/landing_filters.feature +176 -0
  112. data/features/tests/landing/landing_home.feature +68 -0
  113. data/features/tests/landing/landing_integration.feature +153 -0
  114. data/features/tests/landing/landing_long_tail.feature +162 -0
  115. data/features/tests/landing/landing_matrix.feature +156 -0
  116. data/features/tests/landing/landing_negative.feature +157 -0
  117. data/features/tests/landing/landing_orders.feature +107 -0
  118. data/features/tests/landing/landing_pagination.feature +142 -0
  119. data/features/tests/landing/landing_passenger_review.feature +139 -0
  120. data/features/tests/landing/landing_positive.feature +155 -0
  121. data/features/tests/landing/landing_reviews.feature +139 -0
  122. data/features/tests/landing/landing_tags.feature +148 -0
  123. data/features/tests/matrix/matrix_airlines.feature +104 -0
  124. data/features/tests/matrix/matrix_fare_chart.feature +24 -0
  125. data/features/tests/matrix/matrix_price.feature +35 -0
  126. data/features/tests/others/alerts.feature +89 -0
  127. data/features/tests/others/anticipatedsearch.feature +82 -0
  128. data/features/tests/others/flights_tracker.feature +94 -0
  129. data/features/tests/others/newsletter.feature +131 -0
  130. data/features/tests/others/querystringparameters.feature +82 -0
  131. data/features/tests/others/recommendation.feature +170 -0
  132. data/features/tests/others/semaphore.feature +206 -0
  133. data/features/tests/others/upgrade_bussines.feature +100 -0
  134. data/features/tests/search/basefare.feature +88 -0
  135. data/features/tests/search/itineraries.feature +85 -0
  136. data/features/tests/search/orders.feature +100 -0
  137. data/features/tests/search/pagination.feature +70 -0
  138. data/features/tests/search/reviews.feature +84 -0
  139. data/features/tests/search/searches.feature +197 -0
  140. data/features/tests/search/wish_list.feature +102 -0
  141. data/flights_gui_henry_tests.gemspec +32 -0
  142. data/henry-context.yml +14733 -0
  143. metadata +324 -0
@@ -0,0 +1,176 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.filters
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @filters
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
+ Entonces Verifico que la pagina no rompa
16
+ Cuando Espero que termine de cargar
17
+ Cuando Elijo el tipo de vuelo "<tipo>"
18
+ Entonces Verifico que la pagina no rompa
19
+ Entonces Verifico que traiga resultados de landings
20
+ Entonces Elijo moneda local como precio de filtrado
21
+ Cuando Elijo una aerolinea a aplicar
22
+ #Entonces Filtro por aerolinea
23
+ #Cuando Espero que termine de cargar
24
+ #Entonces Verifico que la pagina no rompa
25
+ #Entonces Verifico que los contadores respecto a las aerolineas sean correctos
26
+ #Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
27
+ #Cuando Limpio el filtro de aerolineas
28
+ #Cuando Espero que termine de cargar
29
+ #Entonces Verifico que la pagina no rompa
30
+ Cuando Elijo un aeropuerto outbound a aplicar
31
+ Entonces Filtro por aeropuerto
32
+ Cuando Espero que termine de cargar
33
+ Entonces Verifico que la pagina no rompa
34
+ Entonces Verifico que los contadores respecto al aeropuerto sean correctos
35
+ Y Verifico que la primer pagina muestre correctamente los filtros de aeropuertos outbound
36
+ Cuando Limpio el filtro de aeropuertos outbound
37
+ Cuando Espero que termine de cargar
38
+ Cuando Elijo una escala a aplicar
39
+ Entonces Filtro por escala
40
+ Cuando Espero que termine de cargar
41
+ Entonces Verifico que la pagina no rompa
42
+ Entonces Verifico que los contadores respecto a las escalas sean correctos
43
+ Y Verifico que la primer pagina muestre correctamente los filtros de escalas
44
+ Cuando Limpio el filtro de escalas
45
+ Cuando Espero que termine de cargar
46
+ Cuando Elijo un horario outbound a aplicar
47
+ Entonces Filtro por horario outbound
48
+ Cuando Espero que termine de cargar
49
+ Entonces Verifico que traiga resultados de landings
50
+ Entonces Verifico que la pagina no rompa
51
+ Entonces Verifico que los contadores respecto a los horarios sean correctos
52
+ Y Verifico que la primer pagina muestre correctamente los filtros de horario outbound
53
+ Cuando Limpio el filtro de horario outbound
54
+ Cuando Espero que termine de cargar
55
+ Entonces Verifico que la pagina no rompa
56
+
57
+ @ar
58
+ @roundtrip
59
+ Ejemplos:
60
+ |pais|tipo|x|
61
+ |AR |roundtrip|10|
62
+ @ar
63
+ @oneway
64
+ Ejemplos:
65
+ |pais|tipo|x|
66
+ |AR |oneway|10|
67
+ @br
68
+ @roundtrip
69
+ Ejemplos:
70
+ |pais|tipo|x|
71
+ |BR |roundtrip|10|
72
+ @br
73
+ @oneway
74
+ Ejemplos:
75
+ |pais|tipo|x|
76
+ |BR |oneway|10|
77
+ @co
78
+ @roundtrip
79
+ Ejemplos:
80
+ |pais|tipo|x|
81
+ |CO |roundtrip|10|
82
+ @co
83
+ @oneway
84
+ Ejemplos:
85
+ |pais|tipo|x|
86
+ |CO |oneway|10|
87
+ @cl
88
+ @roundtrip
89
+ Ejemplos:
90
+ |pais|tipo|x|
91
+ |CL |roundtrip|10|
92
+ @cl
93
+ @oneway
94
+ Ejemplos:
95
+ |pais|tipo|x|
96
+ |CL |oneway|10|
97
+ @cr
98
+ @roundtrip
99
+ Ejemplos:
100
+ |pais|tipo|x|
101
+ |CR |roundtrip|10|
102
+ @cr
103
+ @oneway
104
+ Ejemplos:
105
+ |pais|tipo|x|
106
+ |CR |oneway|10|
107
+ @ec
108
+ @roundtrip
109
+ Ejemplos:
110
+ |pais|tipo|x|
111
+ |EC |roundtrip|10|
112
+ @ec
113
+ @oneway
114
+ Ejemplos:
115
+ |pais|tipo|x|
116
+ |EC |oneway|10|
117
+ @mx
118
+ @roundtrip
119
+ Ejemplos:
120
+ |pais|tipo|x|
121
+ |MX |roundtrip|10|
122
+ @mx
123
+ @oneway
124
+ Ejemplos:
125
+ |pais|tipo|x|
126
+ |MX |oneway|10|
127
+ @pa
128
+ @roundtrip
129
+ Ejemplos:
130
+ |pais|tipo|x|
131
+ |PA |roundtrip|10|
132
+ @pa
133
+ @oneway
134
+ Ejemplos:
135
+ |pais|tipo|x|
136
+ |PA |oneway|10|
137
+ @pe
138
+ @roundtrip
139
+ Ejemplos:
140
+ |pais|tipo|x|
141
+ |PE |roundtrip|10|
142
+ @pe
143
+ @oneway
144
+ Ejemplos:
145
+ |pais|tipo|x|
146
+ |PE |oneway|10|
147
+ @us
148
+ @roundtrip
149
+ Ejemplos:
150
+ |pais|tipo|x|
151
+ |US |roundtrip|10|
152
+ @us
153
+ @oneway
154
+ Ejemplos:
155
+ |pais|tipo|x|
156
+ |US |oneway|10|
157
+ @uy
158
+ @roundtrip
159
+ Ejemplos:
160
+ |pais|tipo|x|
161
+ |UY |roundtrip|10|
162
+ @uy
163
+ @oneway
164
+ Ejemplos:
165
+ |pais|tipo|x|
166
+ |UY |oneway|10|
167
+ @ve
168
+ @roundtrip
169
+ Ejemplos:
170
+ |pais|tipo|x|
171
+ |VE |roundtrip|10|
172
+ @ve
173
+ @oneway
174
+ Ejemplos:
175
+ |pais|tipo|x|
176
+ |VE |oneway|10|
@@ -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,153 @@
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 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
+ Y Verifico que la url sea la correcta
19
+ Y Verifico que la ciudad destino sea la que se eligio en home
20
+ Entonces Levanto los datos de clusters
21
+ Y Verifico que no vengan mas de diez resultados por pagina
22
+ Y Verifico que traiga precios con formato correcto y positivos
23
+ Y Verifico que traiga aeropuertos y concuerden con la ciudad buscada
24
+ Y Verifico que traiga fechas en formato correcto
25
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
26
+ Cuando Espero que termine de cargar
27
+ Cuando Verifico la pagina donde ingresa
28
+ Cuando Si ingreso resultados, Espero que termine de cargar
29
+ Entonces Si ingreso resultados, Verifico que sea la pagina de resultados correcta
30
+ Y Si ingreso resultados, Verifico que traiga resultados
31
+ Y Si ingreso resultados, Verifico que el valor elejido en landing se encuentre en la lista de resultados
32
+ Y Si ingreso checkout, Verifico que ingrese al checkout
33
+
34
+ @ar
35
+ @roundtrip
36
+ Ejemplos:
37
+ |pais|tipo|
38
+ |AR |roundtrip|
39
+ @ar
40
+ @oneway
41
+ Ejemplos:
42
+ |pais|tipo|
43
+ |AR |oneway|
44
+ @br
45
+ @roundtrip
46
+ Ejemplos:
47
+ |pais|tipo|
48
+ |BR |roundtrip|
49
+ @br
50
+ @oneway
51
+ Ejemplos:
52
+ |pais|tipo|
53
+ |BR |oneway|
54
+ @co
55
+ @roundtrip
56
+ Ejemplos:
57
+ |pais|tipo|
58
+ |CO |roundtrip|
59
+ @co
60
+ @oneway
61
+ Ejemplos:
62
+ |pais|tipo|
63
+ |CO |oneway|
64
+ @cl
65
+ @roundtrip
66
+ Ejemplos:
67
+ |pais|tipo|
68
+ |CL |roundtrip|
69
+ @cl
70
+ @oneway
71
+ Ejemplos:
72
+ |pais|tipo|
73
+ |CL |oneway|
74
+ @cr
75
+ @roundtrip
76
+ Ejemplos:
77
+ |pais|tipo|
78
+ |CR |roundtrip|
79
+ @cr
80
+ @oneway
81
+ Ejemplos:
82
+ |pais|tipo|
83
+ |CR |oneway|
84
+ @ec
85
+ @roundtrip
86
+ Ejemplos:
87
+ |pais|tipo|
88
+ |EC |roundtrip|
89
+ @ec
90
+ @oneway
91
+ Ejemplos:
92
+ |pais|tipo|
93
+ |EC |oneway|
94
+ @mx
95
+ @roundtrip
96
+ Ejemplos:
97
+ |pais|tipo|
98
+ |MX |roundtrip|
99
+ @mx
100
+ @oneway
101
+ Ejemplos:
102
+ |pais|tipo|
103
+ |MX |oneway|
104
+ @pa
105
+ @roundtrip
106
+ Ejemplos:
107
+ |pais|tipo|
108
+ |PA |roundtrip|
109
+ @pa
110
+ @oneway
111
+ Ejemplos:
112
+ |pais|tipo|
113
+ |PA |oneway|
114
+ @pe
115
+ @roundtrip
116
+ Ejemplos:
117
+ |pais|tipo|
118
+ |PE |roundtrip|
119
+ @pe
120
+ @oneway
121
+ Ejemplos:
122
+ |pais|tipo|
123
+ |PE |oneway|
124
+ @us
125
+ @roundtrip
126
+ Ejemplos:
127
+ |pais|tipo|
128
+ |US |roundtrip|
129
+ @us
130
+ @oneway
131
+ Ejemplos:
132
+ |pais|tipo|
133
+ |US |oneway|
134
+ @uy
135
+ @roundtrip
136
+ Ejemplos:
137
+ |pais|tipo|
138
+ |UY |roundtrip|
139
+ @uy
140
+ @oneway
141
+ Ejemplos:
142
+ |pais|tipo|
143
+ |UY |oneway|
144
+ @ve
145
+ @roundtrip
146
+ Ejemplos:
147
+ |pais|tipo|
148
+ |VE |roundtrip|
149
+ @ve
150
+ @oneway
151
+ Ejemplos:
152
+ |pais|tipo|
153
+ |VE |oneway|
@@ -0,0 +1,162 @@
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 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
+ Y Verifico las nuevas urls de vuelos a destino por aerolinea
19
+ Cuando Espero que termine de cargar
20
+ Entonces Verifico que la pagina no rompa
21
+ Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
22
+ Cuando Limpio el filtro de aerolineas
23
+ Cuando Espero que termine de cargar
24
+ Entonces Verifico que la pagina no rompa
25
+ Y Verifico que aparezcan los links propuestos de vuelos a destino por aerolinea
26
+ Entonces Si es ida y vuelta, Verifico las nuevas urls de vuelos a destino por aeropuerto de llegada
27
+ Cuando Si es ida y vuelta, Espero que termine de cargar
28
+ Entonces Si es ida y vuelta, Verifico que la pagina no rompa
29
+ Y Si es ida y vuelta, Verifico que la primer pagina muestre correctamente los filtros de aeropuertos inbound
30
+ Cuando Si es ida y vuelta, Limpio el filtro de aeropuertos inbound
31
+ Cuando Si es ida y vuelta, Espero que termine de cargar
32
+ Entonces Si es ida y vuelta, Verifico que la pagina no rompa
33
+ Y Si es ida y vuelta, Verifico que aparezcan los links propuestos de vuelos a destino por aeropuerto de llegada
34
+ Cuando Verifico las nuevas urls de vuelos a destino por aeropuerto de salida
35
+ Cuando Espero que termine de cargar
36
+ Entonces Verifico que la pagina no rompa
37
+ Y Verifico que la primer pagina muestre correctamente los filtros de aeropuertos outbound
38
+ Cuando Limpio el filtro de aeropuertos outbound
39
+ Cuando Espero que termine de cargar
40
+ Entonces Verifico que la pagina no rompa
41
+ Y Verifico que aparezcan los links propuestos de vuelos a destino por aeropuerto de salida
42
+
43
+ @ar
44
+ @roundtrip
45
+ Ejemplos:
46
+ |pais|tipo|
47
+ |AR |roundtrip|
48
+ @ar
49
+ @oneway
50
+ Ejemplos:
51
+ |pais|tipo|
52
+ |AR |oneway|
53
+ @br
54
+ @roundtrip
55
+ Ejemplos:
56
+ |pais|tipo|
57
+ |BR |roundtrip|
58
+ @br
59
+ @oneway
60
+ Ejemplos:
61
+ |pais|tipo|
62
+ |BR |oneway|
63
+ @co
64
+ @roundtrip
65
+ Ejemplos:
66
+ |pais|tipo|
67
+ |CO |roundtrip|
68
+ @co
69
+ @oneway
70
+ Ejemplos:
71
+ |pais|tipo|
72
+ |CO |oneway|
73
+ @cl
74
+ @roundtrip
75
+ Ejemplos:
76
+ |pais|tipo|
77
+ |CL |roundtrip|
78
+ @cl
79
+ @oneway
80
+ Ejemplos:
81
+ |pais|tipo|
82
+ |CL |oneway|
83
+ @cr
84
+ @roundtrip
85
+ Ejemplos:
86
+ |pais|tipo|
87
+ |CR |roundtrip|
88
+ @cr
89
+ @oneway
90
+ Ejemplos:
91
+ |pais|tipo|
92
+ |CR |oneway|
93
+ @ec
94
+ @roundtrip
95
+ Ejemplos:
96
+ |pais|tipo|
97
+ |EC |roundtrip|
98
+ @ec
99
+ @oneway
100
+ Ejemplos:
101
+ |pais|tipo|
102
+ |EC |oneway|
103
+ @mx
104
+ @roundtrip
105
+ Ejemplos:
106
+ |pais|tipo|
107
+ |MX |roundtrip|
108
+ @mx
109
+ @oneway
110
+ Ejemplos:
111
+ |pais|tipo|
112
+ |MX |oneway|
113
+ @pa
114
+ @roundtrip
115
+ Ejemplos:
116
+ |pais|tipo|
117
+ |PA |roundtrip|
118
+ @pa
119
+ @oneway
120
+ Ejemplos:
121
+ |pais|tipo|
122
+ |PA |oneway|
123
+ @pe
124
+ @roundtrip
125
+ Ejemplos:
126
+ |pais|tipo|
127
+ |PE |roundtrip|
128
+ @pe
129
+ @oneway
130
+ Ejemplos:
131
+ |pais|tipo|
132
+ |PE |oneway|
133
+ @us
134
+ @roundtrip
135
+ Ejemplos:
136
+ |pais|tipo|
137
+ |US |roundtrip|
138
+ @us
139
+ @oneway
140
+ Ejemplos:
141
+ |pais|tipo|
142
+ |US |oneway|
143
+ @uy
144
+ @roundtrip
145
+ Ejemplos:
146
+ |pais|tipo|
147
+ |UY |roundtrip|
148
+ @uy
149
+ @oneway
150
+ Ejemplos:
151
+ |pais|tipo|
152
+ |UY |oneway|
153
+ @ve
154
+ @roundtrip
155
+ Ejemplos:
156
+ |pais|tipo|
157
+ |VE |roundtrip|
158
+ @ve
159
+ @oneway
160
+ Ejemplos:
161
+ |pais|tipo|
162
+ |VE |oneway|
@@ -0,0 +1,156 @@
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 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
+ Cuando Elijo en la matriz una escala a aplicar
19
+ Entonces Filtro por matriz una escala
20
+ Cuando Espero que termine de cargar
21
+ Entonces Verifico que la pagina no rompa
22
+ Y Verifico que la primer pagina muestre correctamente los filtros de escalas en matriz
23
+ Y Valido mensaje del filtro por escala
24
+ Cuando Limpio la matriz
25
+ Cuando Espero que termine de cargar
26
+ Entonces Verifico que la pagina no rompa
27
+ Cuando Elijo en la matriz una aerolinea a aplicar
28
+ Entonces Filtro por matriz una aerolinea
29
+ Cuando Espero que termine de cargar
30
+ Entonces Verifico que la pagina no rompa
31
+ Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
32
+ Y Valido mensaje del filtro por aerolinea
33
+ Cuando Limpio la matriz
34
+ Cuando Espero que termine de cargar
35
+ Entonces Verifico que la pagina no rompa
36
+
37
+ @ar
38
+ @roundtrip
39
+ Ejemplos:
40
+ |pais|tipo|
41
+ |AR |roundtrip|
42
+ @ar
43
+ @oneway
44
+ Ejemplos:
45
+ |pais|tipo|
46
+ |AR |oneway|
47
+ @br
48
+ @roundtrip
49
+ Ejemplos:
50
+ |pais|tipo|
51
+ |BR |roundtrip|
52
+ @br
53
+ @oneway
54
+ Ejemplos:
55
+ |pais|tipo|
56
+ |BR |oneway|
57
+ @co
58
+ @roundtrip
59
+ Ejemplos:
60
+ |pais|tipo|
61
+ |CO |roundtrip|
62
+ @co
63
+ @oneway
64
+ Ejemplos:
65
+ |pais|tipo|
66
+ |CO |oneway|
67
+ @cl
68
+ @roundtrip
69
+ Ejemplos:
70
+ |pais|tipo|
71
+ |CL |roundtrip|
72
+ @cl
73
+ @oneway
74
+ Ejemplos:
75
+ |pais|tipo|
76
+ |CL |oneway|
77
+ @cr
78
+ @roundtrip
79
+ Ejemplos:
80
+ |pais|tipo|
81
+ |CR |roundtrip|
82
+ @cr
83
+ @oneway
84
+ Ejemplos:
85
+ |pais|tipo|
86
+ |CR |oneway|
87
+ @ec
88
+ @roundtrip
89
+ Ejemplos:
90
+ |pais|tipo|
91
+ |EC |roundtrip|
92
+ @ec
93
+ @oneway
94
+ Ejemplos:
95
+ |pais|tipo|
96
+ |EC |oneway|
97
+ @mx
98
+ @roundtrip
99
+ Ejemplos:
100
+ |pais|tipo|
101
+ |MX |roundtrip|
102
+ @mx
103
+ @oneway
104
+ Ejemplos:
105
+ |pais|tipo|
106
+ |MX |oneway|
107
+ @pa
108
+ @roundtrip
109
+ Ejemplos:
110
+ |pais|tipo|
111
+ |PA |roundtrip|
112
+ @pa
113
+ @oneway
114
+ Ejemplos:
115
+ |pais|tipo|
116
+ |PA |oneway|
117
+ @pe
118
+ @roundtrip
119
+ Ejemplos:
120
+ |pais|tipo|
121
+ |PE |roundtrip|
122
+ @pe
123
+ @oneway
124
+ Ejemplos:
125
+ |pais|tipo|
126
+ |PE |oneway|
127
+ @us
128
+ @roundtrip
129
+ Ejemplos:
130
+ |pais|tipo|
131
+ |US |roundtrip|
132
+ @us
133
+ @oneway
134
+ Ejemplos:
135
+ |pais|tipo|
136
+ |US |oneway|
137
+ @uy
138
+ @roundtrip
139
+ Ejemplos:
140
+ |pais|tipo|
141
+ |UY |roundtrip|
142
+ @uy
143
+ @oneway
144
+ Ejemplos:
145
+ |pais|tipo|
146
+ |UY |oneway|
147
+ @ve
148
+ @roundtrip
149
+ Ejemplos:
150
+ |pais|tipo|
151
+ |VE |roundtrip|
152
+ @ve
153
+ @oneway
154
+ Ejemplos:
155
+ |pais|tipo|
156
+ |VE |oneway|