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,89 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.basefare
4
+ Se verifica que el filtro por precio en matriz funcione y que el fare se muestren correctamente.
5
+
6
+ @basefare
7
+ Esquema del escenario: Ingresar a resultados, filtro por un precio, verificar que se muestre correctamente y sea el fare que se debe aplicar
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
+ Y Verifico los textos de las opciones del combo
12
+ Y Valido el sorting en "<pais>"
13
+ Y Elijo moneda local en "<pais>"
14
+ Y Filtro por un itinerario en la matriz en "<pais>"
15
+ Cuando Espero que termine de cargar
16
+ Entonces Valido la base tarifaria en "<pais>"
17
+ Y Valido el breakdown en "<pais>"
18
+
19
+ @ar
20
+ Ejemplos:
21
+ |pais|tipo|cabotage|
22
+ |AR |roundtrip|true|
23
+ |AR |multipledestinations|true|
24
+ |AR |oneway|nil|
25
+ @br
26
+ Ejemplos:
27
+ |pais|tipo|cabotage|
28
+ |BR |oneway|true|
29
+ |BR |roundtrip|true|
30
+ @co
31
+ Ejemplos:
32
+ |pais|tipo|cabotage|
33
+ |CO |roundtrip|true|
34
+ |CO |oneway|nil|
35
+ |CO |multipledestinations|nil|
36
+ @mx
37
+ Ejemplos:
38
+ |pais|tipo|cabotage|
39
+ |MX |roundtrip|true|
40
+ |MX |oneway|nil|
41
+ |MX |multipledestinations|nil|
42
+ @ve
43
+ Ejemplos:
44
+ |pais|tipo|cabotage|
45
+ |VE |roundtrip|true|
46
+ |VE |oneway|true|
47
+ |VE |multipledestinations|true|
48
+ @cl
49
+ Ejemplos:
50
+ |pais|tipo|cabotage|
51
+ |CL |roundtrip|nil|
52
+ |CL |oneway|nil|
53
+ |CL |multipledestinations|nil|
54
+ @cr
55
+ Ejemplos:
56
+ |pais|tipo|cabotage|
57
+ |CR |roundtrip|true|
58
+ |CR |oneway|true|
59
+ |CR |multipledestinations|nil|
60
+ @ec
61
+ Ejemplos:
62
+ |pais|tipo|cabotage|
63
+ |EC |multipledestinations|true|
64
+ |EC |roundtrip|nil|
65
+ |EC |oneway|nil|
66
+ @pa
67
+ Ejemplos:
68
+ |pais|tipo|cabotage|
69
+ |PA |oneway|true|
70
+ |PA |multipledestinations|true|
71
+ |PA |roundtrip|nil|
72
+ @pe
73
+ Ejemplos:
74
+ |pais|tipo|cabotage|
75
+ |PE |roundtrip|true|
76
+ |PE |oneway|true|
77
+ |PE |multipledestinations|nil|
78
+ @us
79
+ Ejemplos:
80
+ |pais|tipo|cabotage|
81
+ |US |roundtrip|true|
82
+ |US |oneway|true|
83
+ |US |multipledestinations|nil|
84
+ @uy
85
+ Ejemplos:
86
+ |pais|tipo|cabotage|
87
+ |UY |multipledestinations|true|
88
+ |UY |roundtrip|nil|
89
+ |UY |oneway|nil|
@@ -0,0 +1,198 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.errors
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @errors
7
+ Esquema del escenario: Ingresar a la pagina de resultados
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Cuando Espero que termine de cargar
11
+ Entonces Verifico que traiga resultados
12
+ Cuando ingreso bebes de mas
13
+ Entonces Verifico mensaje de error "cada bebe debe viajar acompanado por un adulto|cada bebe devera viajar acompanhado por um adulto|every infant must travel with an adult"
14
+ Cuando ingreso una fecha pasada
15
+ Entonces Verifico mensaje de error "es una fecha demasiado cercana para comprar en nuestro sitio web|e uma data muito proxima ao embarque para voce comprar sua passagem em nosso website|is too soon to book on our website"
16
+ Cuando ingreso una fecha del dia de hoy
17
+ Entonces Verifico mensaje de error "es una fecha demasiado cercana para comprar en nuestro sitio web| e uma data muito proxima ao embarque para voce comprar sua passagem em nosso website|is too soon to book on our website"
18
+
19
+ @ar
20
+ @roundtrip
21
+ Ejemplos:
22
+ |pais|tipo|cabotage|
23
+ |AR |roundtrip|nil|
24
+ @ar
25
+ @oneway
26
+ Ejemplos:
27
+ |pais|tipo|cabotage|
28
+ |AR |oneway|true|
29
+ @ar
30
+ @multipledestinations
31
+ Ejemplos:
32
+ |pais|tipo|cabotage|
33
+ |AR |multipledestinations|nil|
34
+ @br
35
+ @roundtrip
36
+ Ejemplos:
37
+ |pais|tipo|cabotage|
38
+ |BR |roundtrip|nil|
39
+ @br
40
+ @oneway
41
+ Ejemplos:
42
+ |pais|tipo|cabotage|
43
+ |BR |oneway|true|
44
+ @br
45
+ @multipledestinations
46
+ Ejemplos:
47
+ |pais|tipo|cabotage|
48
+ |BR |multipledestinations|nil|
49
+ @co
50
+ @roundtrip
51
+ Ejemplos:
52
+ |pais|tipo|cabotage|
53
+ |CO |roundtrip|nil|
54
+ @co
55
+ @oneway
56
+ Ejemplos:
57
+ |pais|tipo|cabotage|
58
+ |CO |oneway|nil|
59
+ @co
60
+ @multipledestinations
61
+ Ejemplos:
62
+ |pais|tipo|cabotage|
63
+ |CO |multipledestinations|nil|
64
+ @cl
65
+ @roundtrip
66
+ Ejemplos:
67
+ |pais|tipo|cabotage|
68
+ |CL |roundtrip|nil|
69
+ @cl
70
+ @oneway
71
+ Ejemplos:
72
+ |pais|tipo|cabotage|
73
+ |CL |oneway|nil|
74
+ @cl
75
+ @multipledestinations
76
+ Ejemplos:
77
+ |pais|tipo|cabotage|
78
+ |CL |multipledestinations|nil|
79
+ @cr
80
+ @roundtrip
81
+ Ejemplos:
82
+ |pais|tipo|cabotage|
83
+ |CR |roundtrip|nil|
84
+ @cr
85
+ @oneway
86
+ Ejemplos:
87
+ |pais|tipo|cabotage|
88
+ |CR |oneway|nil|
89
+ @cr
90
+ @multipledestinations
91
+ Ejemplos:
92
+ |pais|tipo|cabotage|
93
+ |CR |multipledestinations|nil|
94
+ @ec
95
+ @roundtrip
96
+ Ejemplos:
97
+ |pais|tipo|cabotage|
98
+ |EC |roundtrip|nil|
99
+ @ec
100
+ @oneway
101
+ Ejemplos:
102
+ |pais|tipo|cabotage|
103
+ |EC |oneway|nil|
104
+ @ec
105
+ @multipledestinations
106
+ Ejemplos:
107
+ |pais|tipo|cabotage|
108
+ |EC |multipledestinations|nil|
109
+ @mx
110
+ @roundtrip
111
+ Ejemplos:
112
+ |pais|tipo|cabotage|
113
+ |MX |roundtrip|nil|
114
+ @mx
115
+ @oneway
116
+ Ejemplos:
117
+ |pais|tipo|cabotage|
118
+ |MX |oneway|nil|
119
+ @mx
120
+ @multipledestinations
121
+ Ejemplos:
122
+ |pais|tipo|cabotage|
123
+ |MX |multipledestinations|nil|
124
+ @pa
125
+ @roundtrip
126
+ Ejemplos:
127
+ |pais|tipo|cabotage|
128
+ |PA |roundtrip|nil|
129
+ @pa
130
+ @oneway
131
+ Ejemplos:
132
+ |pais|tipo|cabotage|
133
+ |PA |oneway|nil|
134
+ @pa
135
+ @multipledestinations
136
+ Ejemplos:
137
+ |pais|tipo|cabotage|
138
+ |PA |multipledestinations|nil|
139
+ @pe
140
+ @roundtrip
141
+ Ejemplos:
142
+ |pais|tipo|cabotage|
143
+ |PE |roundtrip|nil|
144
+ @pe
145
+ @oneway
146
+ Ejemplos:
147
+ |pais|tipo|cabotage|
148
+ |PE |oneway|nil|
149
+ @pe
150
+ @multipledestinations
151
+ Ejemplos:
152
+ |pais|tipo|cabotage|
153
+ |PE |multipledestinations|nil|
154
+ @us
155
+ @roundtrip
156
+ Ejemplos:
157
+ |pais|tipo|cabotage|
158
+ |US |roundtrip|nil|
159
+ @us
160
+ @oneway
161
+ Ejemplos:
162
+ |pais|tipo|cabotage|
163
+ |US |oneway|nil|
164
+ @us
165
+ @multipledestinations
166
+ Ejemplos:
167
+ |pais|tipo|cabotage|
168
+ |US |multipledestinations|nil|
169
+ @uy
170
+ @roundtrip
171
+ Ejemplos:
172
+ |pais|tipo|cabotage|
173
+ |UY |roundtrip|nil|
174
+ @uy
175
+ @oneway
176
+ Ejemplos:
177
+ |pais|tipo|cabotage|
178
+ |UY |oneway|nil|
179
+ @uy
180
+ @multipledestinations
181
+ Ejemplos:
182
+ |pais|tipo|cabotage|
183
+ |UY |multipledestinations|nil|
184
+ @ve
185
+ @roundtrip
186
+ Ejemplos:
187
+ |pais|tipo|cabotage|
188
+ |VE |roundtrip|nil|
189
+ @ve
190
+ @oneway
191
+ Ejemplos:
192
+ |pais|tipo|cabotage|
193
+ |VE |oneway|nil|
194
+ @ve
195
+ @multipledestinations
196
+ Ejemplos:
197
+ |pais|tipo|cabotage|
198
+ |VE |multipledestinations|nil|
@@ -0,0 +1,92 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.itineraries
4
+ Se verifica que los cluster contengan datos y funcionalidad correcta.
5
+
6
+ @itineraries
7
+ Esquema del escenario: Se recorren todos los clusters, por cada uno se validan datos consistentes con la busqueda y funcionamiento de popups
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 Si el site es "MX|AR", Verifico el ordenamiento premium economy
12
+ Cuando Si el site no es "MX|AR", Ordeno por "TOTALFARE_ASCENDING"
13
+ Cuando Espero que termine de cargar
14
+ Entonces Verifico cada cluster "<tipo>"
15
+
16
+ @ar
17
+ Ejemplos:
18
+ |pais|tipo|cabotage|
19
+ |AR |roundtrip|true|
20
+ |AR |multipledestinations|true|
21
+ |AR |oneway|nil|
22
+ @br
23
+ Ejemplos:
24
+ |pais|tipo|cabotage|
25
+ |BR |oneway|true|
26
+ |BR |roundtrip|true|
27
+ @co
28
+ Ejemplos:
29
+ |pais|tipo|cabotage|
30
+ |CO |roundtrip|true|
31
+ |CO |oneway|nil|
32
+ |CO |multipledestinations|nil|
33
+ @mx
34
+ Ejemplos:
35
+ |pais|tipo|cabotage|
36
+ |MX |roundtrip|true|
37
+ |MX |oneway|nil|
38
+ |MX |multipledestinations|nil|
39
+ @ve
40
+ Ejemplos:
41
+ |pais|tipo|cabotage|
42
+ |VE |roundtrip|true|
43
+ |VE |oneway|true|
44
+ |VE |multipledestinations|true|
45
+ @cl
46
+ Ejemplos:
47
+ |pais|tipo|cabotage|
48
+ |CL |roundtrip|nil|
49
+ |CL |oneway|nil|
50
+ |CL |multipledestinations|nil|
51
+ @cr
52
+ Ejemplos:
53
+ |pais|tipo|cabotage|
54
+ |CR |roundtrip|true|
55
+ |CR |oneway|true|
56
+ |CR |multipledestinations|nil|
57
+ @ec
58
+ Ejemplos:
59
+ |pais|tipo|cabotage|
60
+ |EC |multipledestinations|true|
61
+ |EC |roundtrip|nil|
62
+ |EC |oneway|nil|
63
+ @pa
64
+ Ejemplos:
65
+ |pais|tipo|cabotage|
66
+ |PA |oneway|true|
67
+ |PA |multipledestinations|true|
68
+ |PA |roundtrip|nil|
69
+ @pe
70
+ Ejemplos:
71
+ |pais|tipo|cabotage|
72
+ |PE |roundtrip|true|
73
+ |PE |oneway|true|
74
+ |PE |multipledestinations|nil|
75
+ @us
76
+ Ejemplos:
77
+ |pais|tipo|cabotage|
78
+ |US |roundtrip|true|
79
+ |US |oneway|true|
80
+ |US |multipledestinations|nil|
81
+ @uy
82
+ Ejemplos:
83
+ |pais|tipo|cabotage|
84
+ |UY |multipledestinations|true|
85
+ |UY |roundtrip|nil|
86
+ |UY |oneway|nil|
87
+ @pr
88
+ Ejemplos:
89
+ |pais|tipo|cabotage|
90
+ |PR |multipledestinations|true|
91
+ |PR |roundtrip|nil|
92
+ |PR |oneway|nil|
@@ -0,0 +1,88 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.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
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "nil"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Elijo ordenamiento "<order>"
12
+ Cuando Espero que termine de cargar
13
+ Entonces Verifico que la pagina no rompa
14
+ Entonces Levanto los datos de los clusters "<tipo>"
15
+ Y Verifico ordenamiento <order>
16
+
17
+ @ar
18
+ Ejemplos:
19
+ |pais|tipo|order|
20
+ |AR |roundtrip|STOPSCOUNT_ASCENDING|
21
+ |AR |oneway|TOTALFARE_ASCENDING|
22
+ |AR |roundtrip|DURATION_ASCENDING|
23
+ @br
24
+ Ejemplos:
25
+ |pais|tipo|order|
26
+ |BR |roundtrip|STOPSCOUNT_ASCENDING|
27
+ |BR |oneway|TOTALFARE_ASCENDING|
28
+ |BR |oneway|DURATION_ASCENDING|
29
+ @cl
30
+ Ejemplos:
31
+ |pais|tipo|order|
32
+ |CL |roundtrip|STOPSCOUNT_ASCENDING|
33
+ |CL |oneway|TOTALFARE_ASCENDING|
34
+ |CL |roundtrip|DURATION_ASCENDING|
35
+ @co
36
+ Ejemplos:
37
+ |pais|tipo|order|
38
+ |CO |roundtrip|STOPSCOUNT_ASCENDING|
39
+ |CO |oneway|TOTALFARE_ASCENDING|
40
+ |CO |oneway|DURATION_ASCENDING|
41
+ @cr
42
+ Ejemplos:
43
+ |pais|tipo|order|
44
+ |CR |roundtrip|STOPSCOUNT_ASCENDING|
45
+ |CR |oneway|TOTALFARE_ASCENDING|
46
+ |CR |roundtrip|DURATION_ASCENDING|
47
+ @pa
48
+ Ejemplos:
49
+ |pais|tipo|order|
50
+ |PA |roundtrip|STOPSCOUNT_ASCENDING|
51
+ |PA |oneway|TOTALFARE_ASCENDING|
52
+ |PA |oneway|DURATION_ASCENDING|
53
+ @ec
54
+ Ejemplos:
55
+ |pais|tipo|order|
56
+ |EC |roundtrip|STOPSCOUNT_ASCENDING|
57
+ |EC |oneway|TOTALFARE_ASCENDING|
58
+ |EC |roundtrip|DURATION_ASCENDING|
59
+ @mx
60
+ Ejemplos:
61
+ |pais|tipo|order|
62
+ |MX |roundtrip|STOPSCOUNT_ASCENDING|
63
+ |MX |oneway|TOTALFARE_ASCENDING|
64
+ |MX |oneway|DURATION_ASCENDING|
65
+ @pe
66
+ Ejemplos:
67
+ |pais|tipo|order|
68
+ |PE |roundtrip|STOPSCOUNT_ASCENDING|
69
+ |PE |oneway|TOTALFARE_ASCENDING|
70
+ |PE |roundtrip|DURATION_ASCENDING|
71
+ @uy
72
+ Ejemplos:
73
+ |pais|tipo|order|
74
+ |UY |roundtrip|STOPSCOUNT_ASCENDING|
75
+ |UY |oneway|TOTALFARE_ASCENDING|
76
+ |UY |oneway|DURATION_ASCENDING|
77
+ @us
78
+ Ejemplos:
79
+ |pais|tipo|order|
80
+ |US |roundtrip|STOPSCOUNT_ASCENDING|
81
+ |US |oneway|TOTALFARE_ASCENDING|
82
+ |US |roundtrip|DURATION_ASCENDING|
83
+ @ve
84
+ Ejemplos:
85
+ |pais|tipo|order|
86
+ |VE |roundtrip|STOPSCOUNT_ASCENDING|
87
+ |VE |oneway|TOTALFARE_ASCENDING|
88
+ |VE |oneway|DURATION_ASCENDING|