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,151 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.negative
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @negative
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 el mensaje de error en el cluster sea correcto
15
+ Y Verifico que ciudades iguales de error
16
+ Y Verifico que si paso tres ciudades en la url de error
17
+ Y Verifico que fechas iguales no de error
18
+ Y Verifico que la ciudad "xxx" de error
19
+ Y Verifico que paginado negativo de error
20
+ #Y Verifico que dias de permanencia negativo de error
21
+ Y Verifico que si la fecha de ida ingresada es posterior a la fecha de vuelta de error
22
+ Y Verifico que si la url no tiene el seoPath, se redirige a la pagina que si lo tiene
23
+ Y Verifico que si el seoPath esta mal escrito, se redirige a la pagina con el seoPath correcto
24
+ Y Verifico que si se pone un codigo de aeropuerto en vez de uno de cuidad, se redirige a la ciudad del aeropuerto
25
+ Y Verifico que si se pone algun caracter en mayuscula, se redirige a todo minuscula
26
+ Y Verifico que si la url tiene parametros, se deben conservar en la redireccion
27
+ Y Verifico que la url para sem funcione correctamente con un ciudad con resultados sin seoPath
28
+ Y Verifico que la url para sem funcione correctamente con un ciudad sin resultados sin seoPath
29
+ Y Verifico que la url de landing para el destino "lrl" no rompa
30
+ Y Verifico que redirija a la home de vuelos si no hay oficinas en la ciudad de origen
31
+
32
+ @ar
33
+ @roundtrip
34
+ Ejemplos:
35
+ |pais|tipo|
36
+ |AR |roundtrip|
37
+ @ar
38
+ @oneway
39
+ Ejemplos:
40
+ |pais|tipo|
41
+ |AR |oneway|
42
+ @br
43
+ @roundtrip
44
+ Ejemplos:
45
+ |pais|tipo|
46
+ |BR |roundtrip|
47
+ @br
48
+ @oneway
49
+ Ejemplos:
50
+ |pais|tipo|
51
+ |BR |oneway|
52
+ @co
53
+ @roundtrip
54
+ Ejemplos:
55
+ |pais|tipo|
56
+ |CO |roundtrip|
57
+ @co
58
+ @oneway
59
+ Ejemplos:
60
+ |pais|tipo|
61
+ |CO |oneway|
62
+ @cl
63
+ @roundtrip
64
+ Ejemplos:
65
+ |pais|tipo|
66
+ |CL |roundtrip|
67
+ @cl
68
+ @oneway
69
+ Ejemplos:
70
+ |pais|tipo|
71
+ |CL |oneway|
72
+ @cr
73
+ @roundtrip
74
+ Ejemplos:
75
+ |pais|tipo|
76
+ |CR |roundtrip|
77
+ @cr
78
+ @oneway
79
+ Ejemplos:
80
+ |pais|tipo|
81
+ |CR |oneway|
82
+ @ec
83
+ @roundtrip
84
+ Ejemplos:
85
+ |pais|tipo|
86
+ |EC |roundtrip|
87
+ @ec
88
+ @oneway
89
+ Ejemplos:
90
+ |pais|tipo|
91
+ |EC |oneway|
92
+ @mx
93
+ @roundtrip
94
+ Ejemplos:
95
+ |pais|tipo|
96
+ |MX |roundtrip|
97
+ @mx
98
+ @oneway
99
+ Ejemplos:
100
+ |pais|tipo|
101
+ |MX |oneway|
102
+ @pa
103
+ @roundtrip
104
+ Ejemplos:
105
+ |pais|tipo|
106
+ |PA |roundtrip|
107
+ @pa
108
+ @oneway
109
+ Ejemplos:
110
+ |pais|tipo|
111
+ |PA |oneway|
112
+ @pe
113
+ @roundtrip
114
+ Ejemplos:
115
+ |pais|tipo|
116
+ |PE |roundtrip|
117
+ @pe
118
+ @oneway
119
+ Ejemplos:
120
+ |pais|tipo|
121
+ |PE |oneway|
122
+ @us
123
+ @roundtrip
124
+ Ejemplos:
125
+ |pais|tipo|
126
+ |US |roundtrip|
127
+ @us
128
+ @oneway
129
+ Ejemplos:
130
+ |pais|tipo|
131
+ |US |oneway|
132
+ @uy
133
+ @roundtrip
134
+ Ejemplos:
135
+ |pais|tipo|
136
+ |UY |roundtrip|
137
+ @uy
138
+ @oneway
139
+ Ejemplos:
140
+ |pais|tipo|
141
+ |UY |oneway|
142
+ @ve
143
+ @roundtrip
144
+ Ejemplos:
145
+ |pais|tipo|
146
+ |VE |roundtrip|
147
+ @ve
148
+ @oneway
149
+ Ejemplos:
150
+ |pais|tipo|
151
+ |VE |oneway|
@@ -0,0 +1,79 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.orders
4
+ Se verifica el correcto funcionamiento de los ordenamientos en resultados
5
+
6
+ @orders
7
+ Esquema del escenario: Verificar el orden de los resultados en 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
+ Cuando Elijo ordenamiento "<order>"
15
+ Cuando Espero que termine de cargar
16
+ Entonces Verifico que la pagina no rompa
17
+ Entonces Levanto los datos de los clusters "<tipo>"
18
+ Y Verifico ordenamiento <order>
19
+
20
+ @ar
21
+ Ejemplos:
22
+ |pais|tipo|order|
23
+ |AR |oneway|STOPSCOUNT_ASCENDING|
24
+ |AR |roundtrip|TOTALFARE_ASCENDING|
25
+ @br
26
+ Ejemplos:
27
+ |pais|tipo|order|
28
+ |BR |oneway|STOPSCOUNT_ASCENDING|
29
+ |BR |roundtrip|TOTALFARE_ASCENDING|
30
+ @cl
31
+ Ejemplos:
32
+ |pais|tipo|order|
33
+ |CL |oneway|STOPSCOUNT_ASCENDING|
34
+ |CL |roundtrip|TOTALFARE_ASCENDING|
35
+ @co
36
+ Ejemplos:
37
+ |pais|tipo|order|
38
+ |CO |oneway|STOPSCOUNT_ASCENDING|
39
+ |CO |roundtrip|TOTALFARE_ASCENDING|
40
+ @cr
41
+ Ejemplos:
42
+ |pais|tipo|order|
43
+ |CR |oneway|STOPSCOUNT_ASCENDING|
44
+ |CR |roundtrip|TOTALFARE_ASCENDING|
45
+ @pa
46
+ Ejemplos:
47
+ |pais|tipo|order|
48
+ |PA |oneway|STOPSCOUNT_ASCENDING|
49
+ |PA |roundtrip|TOTALFARE_ASCENDING|
50
+ @ec
51
+ Ejemplos:
52
+ |pais|tipo|order|
53
+ |EC |oneway|STOPSCOUNT_ASCENDING|
54
+ |EC |roundtrip|TOTALFARE_ASCENDING|
55
+ @mx
56
+ Ejemplos:
57
+ |pais|tipo|order|
58
+ |MX |oneway|STOPSCOUNT_ASCENDING|
59
+ |MX |roundtrip|TOTALFARE_ASCENDING|
60
+ @pe
61
+ Ejemplos:
62
+ |pais|tipo|order|
63
+ |PE |oneway|STOPSCOUNT_ASCENDING|
64
+ |PE |roundtrip|TOTALFARE_ASCENDING|
65
+ @uy
66
+ Ejemplos:
67
+ |pais|tipo|order|
68
+ |UY |oneway|STOPSCOUNT_ASCENDING|
69
+ |UY |roundtrip|TOTALFARE_ASCENDING|
70
+ @us
71
+ Ejemplos:
72
+ |pais|tipo|order|
73
+ |US |oneway|STOPSCOUNT_ASCENDING|
74
+ |US |roundtrip|TOTALFARE_ASCENDING|
75
+ @ve
76
+ Ejemplos:
77
+ |pais|tipo|order|
78
+ |VE |oneway|STOPSCOUNT_ASCENDING|
79
+ |VE |roundtrip|TOTALFARE_ASCENDING|
@@ -0,0 +1,141 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.pagination
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @pagination
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 el paginado mantenga los filtros
15
+ Cuando Vuelvo a la primer pagina
16
+ Entonces Verifico que funcione el paginado correctamente
17
+ Cuando Vuelvo a la primer pagina
18
+ Cuando Espero que termine de cargar
19
+ Entonces Verifico que la pagina no rompa
20
+ Entonces Verifico que el paginado no rompa en la ultima paginas
21
+
22
+ @ar
23
+ @roundtrip
24
+ Ejemplos:
25
+ |pais|tipo|x|
26
+ |AR |roundtrip|10|
27
+ @ar
28
+ @oneway
29
+ Ejemplos:
30
+ |pais|tipo|x|
31
+ |AR |oneway|10|
32
+ @br
33
+ @roundtrip
34
+ Ejemplos:
35
+ |pais|tipo|x|
36
+ |BR |roundtrip|10|
37
+ @br
38
+ @oneway
39
+ Ejemplos:
40
+ |pais|tipo|x|
41
+ |BR |oneway|10|
42
+ @co
43
+ @roundtrip
44
+ Ejemplos:
45
+ |pais|tipo|x|
46
+ |CO |roundtrip|10|
47
+ @co
48
+ @oneway
49
+ Ejemplos:
50
+ |pais|tipo|x|
51
+ |CO |oneway|10|
52
+ @cl
53
+ @roundtrip
54
+ Ejemplos:
55
+ |pais|tipo|x|
56
+ |CL |roundtrip|10|
57
+ @cl
58
+ @oneway
59
+ Ejemplos:
60
+ |pais|tipo|x|
61
+ |CL |oneway|10|
62
+ @cr
63
+ @roundtrip
64
+ Ejemplos:
65
+ |pais|tipo|x|
66
+ |CR |roundtrip|10|
67
+ @cr
68
+ @oneway
69
+ Ejemplos:
70
+ |pais|tipo|x|
71
+ |CR |oneway|10|
72
+ @ec
73
+ @roundtrip
74
+ Ejemplos:
75
+ |pais|tipo|x|
76
+ |EC |roundtrip|10|
77
+ @ec
78
+ @oneway
79
+ Ejemplos:
80
+ |pais|tipo|x|
81
+ |EC |oneway|10|
82
+ @mx
83
+ @roundtrip
84
+ Ejemplos:
85
+ |pais|tipo|x|
86
+ |MX |roundtrip|10|
87
+ @mx
88
+ @oneway
89
+ Ejemplos:
90
+ |pais|tipo|x|
91
+ |MX |oneway|10|
92
+ @pa
93
+ @roundtrip
94
+ Ejemplos:
95
+ |pais|tipo|x|
96
+ |PA |roundtrip|10|
97
+ @pa
98
+ @oneway
99
+ Ejemplos:
100
+ |pais|tipo|x|
101
+ |PA |oneway|10|
102
+ @pe
103
+ @roundtrip
104
+ Ejemplos:
105
+ |pais|tipo|x|
106
+ |PE |roundtrip|10|
107
+ @pe
108
+ @oneway
109
+ Ejemplos:
110
+ |pais|tipo|x|
111
+ |PE |oneway|10|
112
+ @us
113
+ @roundtrip
114
+ Ejemplos:
115
+ |pais|tipo|x|
116
+ |US |roundtrip|10|
117
+ @us
118
+ @oneway
119
+ Ejemplos:
120
+ |pais|tipo|x|
121
+ |US |oneway|10|
122
+ @uy
123
+ @roundtrip
124
+ Ejemplos:
125
+ |pais|tipo|x|
126
+ |UY |roundtrip|10|
127
+ @uy
128
+ @oneway
129
+ Ejemplos:
130
+ |pais|tipo|x|
131
+ |UY |oneway|10|
132
+ @ve
133
+ @roundtrip
134
+ Ejemplos:
135
+ |pais|tipo|x|
136
+ |VE |roundtrip|10|
137
+ @ve
138
+ @oneway
139
+ Ejemplos:
140
+ |pais|tipo|x|
141
+ |VE |oneway|10|
@@ -0,0 +1,135 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.passenger
4
+ Se verifica que la review de los pasajeros se muestre correctamente
5
+
6
+ @passenger
7
+ Esquema del escenario: Ingresar a la pagina de landing e iterar por cada popup de review
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
+ Entonces Verifico que se muestre correctamente la review de pasajero
15
+
16
+ @ar
17
+ @roundtrip
18
+ Ejemplos:
19
+ |pais|tipo|
20
+ |AR |roundtrip|
21
+ @ar
22
+ @oneway
23
+ Ejemplos:
24
+ |pais|tipo|
25
+ |AR |oneway|
26
+ @br
27
+ @roundtrip
28
+ Ejemplos:
29
+ |pais|tipo|
30
+ |BR |roundtrip|
31
+ @br
32
+ @oneway
33
+ Ejemplos:
34
+ |pais|tipo|
35
+ |BR |oneway|
36
+ @co
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |CO |roundtrip|
41
+ @co
42
+ @oneway
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |CO |oneway|
46
+ @cl
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |CL |roundtrip|
51
+ @cl
52
+ @oneway
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |CL |oneway|
56
+ @cr
57
+ @roundtrip
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |CR |roundtrip|
61
+ @cr
62
+ @oneway
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |CR |oneway|
66
+ @ec
67
+ @roundtrip
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |EC |roundtrip|
71
+ @ec
72
+ @oneway
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |EC |oneway|
76
+ @mx
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |MX |roundtrip|
81
+ @mx
82
+ @oneway
83
+ Ejemplos:
84
+ |pais|tipo|
85
+ |MX |oneway|
86
+ @pa
87
+ @roundtrip
88
+ Ejemplos:
89
+ |pais|tipo|
90
+ |PA |roundtrip|
91
+ @pa
92
+ @oneway
93
+ Ejemplos:
94
+ |pais|tipo|
95
+ |PA |oneway|
96
+ @pe
97
+ @roundtrip
98
+ Ejemplos:
99
+ |pais|tipo|
100
+ |PE |roundtrip|
101
+ @pe
102
+ @oneway
103
+ Ejemplos:
104
+ |pais|tipo|
105
+ |PE |oneway|
106
+ @us
107
+ @roundtrip
108
+ Ejemplos:
109
+ |pais|tipo|
110
+ |US |roundtrip|
111
+ @us
112
+ @oneway
113
+ Ejemplos:
114
+ |pais|tipo|
115
+ |US |oneway|
116
+ @uy
117
+ @roundtrip
118
+ Ejemplos:
119
+ |pais|tipo|
120
+ |UY |roundtrip|
121
+ @uy
122
+ @oneway
123
+ Ejemplos:
124
+ |pais|tipo|
125
+ |UY |oneway|
126
+ @ve
127
+ @roundtrip
128
+ Ejemplos:
129
+ |pais|tipo|
130
+ |VE |roundtrip|
131
+ @ve
132
+ @oneway
133
+ Ejemplos:
134
+ |pais|tipo|
135
+ |VE |oneway|