flights_gui_tests 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/features/data/host.yml +78 -0
- data/features/data/miles.yml +216 -0
- data/features/data/sites.yml +44 -0
- data/features/data/tag_microsoft.yml +68 -0
- data/features/step_definitions/checkout/checkout_steps.rb +24 -0
- data/features/step_definitions/checkout/form_steps.rb +20 -0
- data/features/step_definitions/checkout/load_steps.rb +36 -0
- data/features/step_definitions/conditional_steps.rb +12 -0
- data/features/step_definitions/cookies_steps.rb +8 -0
- data/features/step_definitions/flights_tracker/flights_tracker_steps.rb +30 -0
- data/features/step_definitions/landing/itineraries_steps.rb +75 -0
- data/features/step_definitions/landing/landing_steps.rb +59 -0
- data/features/step_definitions/landing/load_steps.rb +30 -0
- data/features/step_definitions/page_steps.rb +18 -0
- data/features/step_definitions/results/basefare_steps.rb +65 -0
- data/features/step_definitions/results/desambiguation_steps.rb +144 -0
- data/features/step_definitions/results/errors_steps.rb +23 -0
- data/features/step_definitions/results/filters_steps.rb +301 -0
- data/features/step_definitions/results/load_steps.rb +52 -0
- data/features/step_definitions/results/matrix_steps.rb +213 -0
- data/features/step_definitions/results/order_steps.rb +49 -0
- data/features/step_definitions/results/pagination_steps.rb +29 -0
- data/features/step_definitions/results/recommendation_steps.rb +75 -0
- data/features/step_definitions/results/results_steps.rb +40 -0
- data/features/step_definitions/results/reviews_steps.rb +16 -0
- data/features/step_definitions/results/tags_steps.rb +102 -0
- data/features/step_definitions/results/wish_list_steps.rb +114 -0
- data/features/step_definitions/thanks/load_steps.rb +10 -0
- data/features/step_definitions/thanks/thanks_steps.rb +12 -0
- data/features/support/classes/clusters/checkout_cluster.rb +117 -0
- data/features/support/classes/clusters/data/data.rb +33 -0
- data/features/support/classes/clusters/results/details_cluster.rb +36 -0
- data/features/support/classes/clusters/results/landing_cluster.rb +29 -0
- data/features/support/classes/clusters/results/render_cluster.rb +83 -0
- data/features/support/classes/clusters/results_cluster.rb +171 -0
- data/features/support/classes/date.rb +26 -0
- data/features/support/classes/element.rb +23 -0
- data/features/support/classes/price.rb +66 -0
- data/features/support/classes/process_manager.rb +104 -0
- data/features/support/classes/string.rb +16 -0
- data/features/support/env.rb +94 -0
- data/features/support/hooks.rb +20 -0
- data/features/support/matchers.rb +108 -0
- data/features/support/modules/accessor.rb +26 -0
- data/features/support/modules/browser.rb +80 -0
- data/features/support/modules/checkout/datos_de_facturacion.rb +64 -0
- data/features/support/modules/checkout/informacion_de_contacto.rb +30 -0
- data/features/support/modules/checkout/pasajeros.rb +71 -0
- data/features/support/modules/checkout/tarjeta.rb +71 -0
- data/features/support/modules/element.rb +12 -0
- data/features/support/modules/helpers.rb +64 -0
- data/features/support/modules/pages/cookies.rb +33 -0
- data/features/support/modules/pages/tags.rb +27 -0
- data/features/support/modules/results/filters.rb +37 -0
- data/features/support/modules/results/itineraries/bussines.rb +17 -0
- data/features/support/modules/results/itineraries/data.rb +25 -0
- data/features/support/modules/results/itineraries/details.rb +80 -0
- data/features/support/modules/results/itineraries/miles.rb +64 -0
- data/features/support/modules/results/itineraries/payments.rb +27 -0
- data/features/support/modules/results/matrix/matrix_airline.rb +52 -0
- data/features/support/modules/results/matrix/matrix_fare_chart.rb +21 -0
- data/features/support/modules/results/matrix/matrix_price.rb +18 -0
- data/features/support/modules/results/recommendation.rb +29 -0
- data/features/support/modules/results/search_params.rb +21 -0
- data/features/support/modules/results/wish_list.rb +33 -0
- data/features/support/pages/all_pages.rb +95 -0
- data/features/support/pages/checkout/checkout_page.rb +45 -0
- data/features/support/pages/checkout/popup_results_page.rb +39 -0
- data/features/support/pages/flights_tracker/search_page.rb +54 -0
- data/features/support/pages/landing/search_page.rb +94 -0
- data/features/support/pages/results/desambiguation_airports_page.rb +16 -0
- data/features/support/pages/results/desambiguation_city_page.rb +20 -0
- data/features/support/pages/results/search_page.rb +101 -0
- data/features/support/pages/thanks/thanks_page.rb +7 -0
- data/features/tests/checkout/book_ok.feature +209 -0
- data/features/tests/flights_tracker/search.feature +65 -0
- data/features/tests/landing/search.feature +152 -0
- data/features/tests/results/basefare.feature +90 -0
- data/features/tests/results/desambiguation/airports.feature +89 -0
- data/features/tests/results/desambiguation/city.feature +87 -0
- data/features/tests/results/errors.feature +198 -0
- data/features/tests/results/filters.feature +113 -0
- data/features/tests/results/itineraries.feature +93 -0
- data/features/tests/results/matrix/matrix_airlines.feature +46 -0
- data/features/tests/results/matrix/matrix_fare_chart.feature +41 -0
- data/features/tests/results/matrix/matrix_price.feature +41 -0
- data/features/tests/results/orders.feature +89 -0
- data/features/tests/results/pagination.feature +74 -0
- data/features/tests/results/recommendation.feature +111 -0
- data/features/tests/results/reviews_airlines.feature +84 -0
- data/features/tests/results/search.feature +209 -0
- data/features/tests/results/wish_list.feature +55 -0
- data/flights_gui_tests.gemspec +34 -0
- data/henry-context.yml +4938 -0
- metadata +306 -0
@@ -0,0 +1,209 @@
|
|
1
|
+
#language: es
|
2
|
+
@checkout
|
3
|
+
Característica: checkout.book_ok
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de checkout, se cargan los datos correctos y se realiza la compra
|
5
|
+
|
6
|
+
@book_ok
|
7
|
+
Esquema del escenario: Ingresar a la pagina de checkout
|
8
|
+
Dado una 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 la pagina de resultados
|
11
|
+
Entonces verifico que traiga resultados
|
12
|
+
Cuando elijo un itinerario y paso a checkout
|
13
|
+
Cuando espero que termine de cargar la pagina de checkout
|
14
|
+
Entonces verifico que ingrese al checkout
|
15
|
+
Y verifico que la pagina no rompa
|
16
|
+
Entonces cargo los pasajeros
|
17
|
+
Y cargo los datos de la tarjeta
|
18
|
+
Y si el site es "AR|MX|PE", cargo los datos de facturacion
|
19
|
+
Y cargo los datos de contacto
|
20
|
+
Cuando acepto y compro
|
21
|
+
Entonces espero que termine el pedido de compra
|
22
|
+
Y verifico si no trae errores
|
23
|
+
Entonces si aparece el popup de no disponibilidad, elijo un itinerario del popup de no disponibilidad
|
24
|
+
Entonces espero que termine de cargar la pagina de gracias
|
25
|
+
Y verifico que ingrese a la pagina de gracias
|
26
|
+
Y verifico el link de mi despegar
|
27
|
+
Y verifico los datos del vuelo comprado
|
28
|
+
Y verifico el tag de datalayer
|
29
|
+
|
30
|
+
@ar
|
31
|
+
@roundtrip
|
32
|
+
Ejemplos:
|
33
|
+
|pais|tipo|cabotage|
|
34
|
+
|AR |roundtrip|nil|
|
35
|
+
@ar
|
36
|
+
@oneway
|
37
|
+
Ejemplos:
|
38
|
+
|pais|tipo|cabotage|
|
39
|
+
|AR |oneway|true|
|
40
|
+
@ar
|
41
|
+
@multipledestinations
|
42
|
+
Ejemplos:
|
43
|
+
|pais|tipo|cabotage|
|
44
|
+
|AR |multipledestinations|nil|
|
45
|
+
@br
|
46
|
+
@roundtrip
|
47
|
+
Ejemplos:
|
48
|
+
|pais|tipo|cabotage|
|
49
|
+
|BR |roundtrip|nil|
|
50
|
+
@br
|
51
|
+
@oneway
|
52
|
+
Ejemplos:
|
53
|
+
|pais|tipo|cabotage|
|
54
|
+
|BR |oneway|true|
|
55
|
+
@br
|
56
|
+
@multipledestinations
|
57
|
+
Ejemplos:
|
58
|
+
|pais|tipo|cabotage|
|
59
|
+
|BR |multipledestinations|nil|
|
60
|
+
@co
|
61
|
+
@roundtrip
|
62
|
+
Ejemplos:
|
63
|
+
|pais|tipo|cabotage|
|
64
|
+
|CO |roundtrip|nil|
|
65
|
+
@co
|
66
|
+
@oneway
|
67
|
+
Ejemplos:
|
68
|
+
|pais|tipo|cabotage|
|
69
|
+
|CO |oneway|nil|
|
70
|
+
@co
|
71
|
+
@multipledestinations
|
72
|
+
Ejemplos:
|
73
|
+
|pais|tipo|cabotage|
|
74
|
+
|CO |multipledestinations|nil|
|
75
|
+
@cl
|
76
|
+
@roundtrip
|
77
|
+
Ejemplos:
|
78
|
+
|pais|tipo|cabotage|
|
79
|
+
|CL |roundtrip|nil|
|
80
|
+
@cl
|
81
|
+
@oneway
|
82
|
+
Ejemplos:
|
83
|
+
|pais|tipo|cabotage|
|
84
|
+
|CL |oneway|nil|
|
85
|
+
@cl
|
86
|
+
@multipledestinations
|
87
|
+
Ejemplos:
|
88
|
+
|pais|tipo|cabotage|
|
89
|
+
|CL |multipledestinations|nil|
|
90
|
+
@cr
|
91
|
+
@roundtrip
|
92
|
+
Ejemplos:
|
93
|
+
|pais|tipo|cabotage|
|
94
|
+
|CR |roundtrip|nil|
|
95
|
+
@cr
|
96
|
+
@oneway
|
97
|
+
Ejemplos:
|
98
|
+
|pais|tipo|cabotage|
|
99
|
+
|CR |oneway|nil|
|
100
|
+
@cr
|
101
|
+
@multipledestinations
|
102
|
+
Ejemplos:
|
103
|
+
|pais|tipo|cabotage|
|
104
|
+
|CR |multipledestinations|nil|
|
105
|
+
@ec
|
106
|
+
@roundtrip
|
107
|
+
Ejemplos:
|
108
|
+
|pais|tipo|cabotage|
|
109
|
+
|EC |roundtrip|nil|
|
110
|
+
@ec
|
111
|
+
@oneway
|
112
|
+
Ejemplos:
|
113
|
+
|pais|tipo|cabotage|
|
114
|
+
|EC |oneway|nil|
|
115
|
+
@ec
|
116
|
+
@multipledestinations
|
117
|
+
Ejemplos:
|
118
|
+
|pais|tipo|cabotage|
|
119
|
+
|EC |multipledestinations|nil|
|
120
|
+
@mx
|
121
|
+
@roundtrip
|
122
|
+
Ejemplos:
|
123
|
+
|pais|tipo|cabotage|
|
124
|
+
|MX |roundtrip|nil|
|
125
|
+
@mx
|
126
|
+
@oneway
|
127
|
+
Ejemplos:
|
128
|
+
|pais|tipo|cabotage|
|
129
|
+
|MX |oneway|nil|
|
130
|
+
@mx
|
131
|
+
@multipledestinations
|
132
|
+
Ejemplos:
|
133
|
+
|pais|tipo|cabotage|
|
134
|
+
|MX |multipledestinations|nil|
|
135
|
+
@pa
|
136
|
+
@roundtrip
|
137
|
+
Ejemplos:
|
138
|
+
|pais|tipo|cabotage|
|
139
|
+
|PA |roundtrip|nil|
|
140
|
+
@pa
|
141
|
+
@oneway
|
142
|
+
Ejemplos:
|
143
|
+
|pais|tipo|cabotage|
|
144
|
+
|PA |oneway|nil|
|
145
|
+
@pa
|
146
|
+
@multipledestinations
|
147
|
+
Ejemplos:
|
148
|
+
|pais|tipo|cabotage|
|
149
|
+
|PA |multipledestinations|nil|
|
150
|
+
@pe
|
151
|
+
@roundtrip
|
152
|
+
Ejemplos:
|
153
|
+
|pais|tipo|cabotage|
|
154
|
+
|PE |roundtrip|nil|
|
155
|
+
@pe
|
156
|
+
@oneway
|
157
|
+
Ejemplos:
|
158
|
+
|pais|tipo|cabotage|
|
159
|
+
|PE |oneway|nil|
|
160
|
+
@pe
|
161
|
+
@multipledestinations
|
162
|
+
Ejemplos:
|
163
|
+
|pais|tipo|cabotage|
|
164
|
+
|PE |multipledestinations|nil|
|
165
|
+
@us
|
166
|
+
@roundtrip
|
167
|
+
Ejemplos:
|
168
|
+
|pais|tipo|cabotage|
|
169
|
+
|US |roundtrip|nil|
|
170
|
+
@us
|
171
|
+
@oneway
|
172
|
+
Ejemplos:
|
173
|
+
|pais|tipo|cabotage|
|
174
|
+
|US |oneway|nil|
|
175
|
+
@us
|
176
|
+
@multipledestinations
|
177
|
+
Ejemplos:
|
178
|
+
|pais|tipo|cabotage|
|
179
|
+
|US |multipledestinations|nil|
|
180
|
+
@uy
|
181
|
+
@roundtrip
|
182
|
+
Ejemplos:
|
183
|
+
|pais|tipo|cabotage|
|
184
|
+
|UY |roundtrip|nil|
|
185
|
+
@uy
|
186
|
+
@oneway
|
187
|
+
Ejemplos:
|
188
|
+
|pais|tipo|cabotage|
|
189
|
+
|UY |oneway|nil|
|
190
|
+
@uy
|
191
|
+
@multipledestinations
|
192
|
+
Ejemplos:
|
193
|
+
|pais|tipo|cabotage|
|
194
|
+
|UY |multipledestinations|nil|
|
195
|
+
@ve
|
196
|
+
@roundtrip
|
197
|
+
Ejemplos:
|
198
|
+
|pais|tipo|cabotage|
|
199
|
+
|VE |roundtrip|nil|
|
200
|
+
@ve
|
201
|
+
@oneway
|
202
|
+
Ejemplos:
|
203
|
+
|pais|tipo|cabotage|
|
204
|
+
|VE |oneway|nil|
|
205
|
+
@ve
|
206
|
+
@multipledestinations
|
207
|
+
Ejemplos:
|
208
|
+
|pais|tipo|cabotage|
|
209
|
+
|VE |multipledestinations|nil|
|
@@ -0,0 +1,65 @@
|
|
1
|
+
#language: es
|
2
|
+
@flights_tracker
|
3
|
+
Característica: flights_tracker.search
|
4
|
+
Para diferentes busquedas de tracking de vuelos me debe devolver los datos del track si estos existen
|
5
|
+
|
6
|
+
@search
|
7
|
+
Esquema del escenario: Realizar una busqueda que traiga datos con numero de vuelo
|
8
|
+
Dado una pagina de trackeo de vuelos en "<pais>"
|
9
|
+
Entonces realizo la busqueda con numero de vuelo "1111"
|
10
|
+
Y verifico que no muestre datos
|
11
|
+
Entonces realizo la busqueda con "cordoba" y "mar del plata" de "<horario>"
|
12
|
+
Y verifico que no muestre datos
|
13
|
+
Entonces realizo la busqueda con numero de vuelo "2280"
|
14
|
+
Y verifico que los datos mostrados sean correctos
|
15
|
+
Entonces realizo la busqueda con "ezeiza" y "santiago" de "<horario>"
|
16
|
+
Y verifico que los datos mostrados sean correctos
|
17
|
+
|
18
|
+
@ar
|
19
|
+
Ejemplos:
|
20
|
+
|pais|horario|
|
21
|
+
|AR |0-7|
|
22
|
+
@br
|
23
|
+
Ejemplos:
|
24
|
+
|pais|horario|
|
25
|
+
|BR |0-6|
|
26
|
+
@co
|
27
|
+
Ejemplos:
|
28
|
+
|pais|horario|
|
29
|
+
|CO |0-7|
|
30
|
+
@cl
|
31
|
+
Ejemplos:
|
32
|
+
|pais|horario|
|
33
|
+
|CL |0-7|
|
34
|
+
@cr
|
35
|
+
Ejemplos:
|
36
|
+
|pais|horario|
|
37
|
+
|CR |0-7|
|
38
|
+
@ec
|
39
|
+
Ejemplos:
|
40
|
+
|pais|horario|
|
41
|
+
|EC |0-7|
|
42
|
+
@mx
|
43
|
+
Ejemplos:
|
44
|
+
|pais|horario|
|
45
|
+
|MX |0-7|
|
46
|
+
@pa
|
47
|
+
Ejemplos:
|
48
|
+
|pais|horario|
|
49
|
+
|PA |0-7|
|
50
|
+
@pe
|
51
|
+
Ejemplos:
|
52
|
+
|pais|horario|
|
53
|
+
|PE |0-7|
|
54
|
+
@us
|
55
|
+
Ejemplos:
|
56
|
+
|pais|horario|
|
57
|
+
|US |0-7|
|
58
|
+
@uy
|
59
|
+
Ejemplos:
|
60
|
+
|pais|horario|
|
61
|
+
|UY |0-7|
|
62
|
+
@ve
|
63
|
+
Ejemplos:
|
64
|
+
|pais|horario|
|
65
|
+
|VE |0-7|
|
@@ -0,0 +1,152 @@
|
|
1
|
+
#language: es
|
2
|
+
@landing
|
3
|
+
Característica: landing.search
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de landing, se elige un itinerario y se verifica su pasaje a resultados/checkout
|
5
|
+
|
6
|
+
@search
|
7
|
+
Esquema del escenario: Ingresar a la pagina de resultados de landing
|
8
|
+
Dado una pagina de landing en "<pais>" del tipo "<tipo>"
|
9
|
+
Entonces verifico que la pagina no rompa
|
10
|
+
Cuando espero que termine de cargar la pagina de landing
|
11
|
+
Y verifico que traiga resultados de landing
|
12
|
+
Cuando elijo el tipo de vuelo "<tipo>"
|
13
|
+
Entonces verifico que la pagina no rompa
|
14
|
+
Entonces verifico que traiga resultados de landing
|
15
|
+
Y verifico que la url sea la correcta
|
16
|
+
Y verifico que la ciudad destino sea la que se eligio
|
17
|
+
Y valido el sorting de landing en "<pais>"
|
18
|
+
Entonces levanto los datos de los itinerarios
|
19
|
+
Y comparo los datos de cluster contra los detalles
|
20
|
+
Y verifico que no vengan mas de diez resultados por pagina
|
21
|
+
Y verifico que traiga precios con formato correcto y positivos
|
22
|
+
Y verifico que traiga aeropuertos y concuerden con la ciudad buscada
|
23
|
+
Y verifico que traiga fechas en formato correcto
|
24
|
+
Cuando elijo un itinerario en landing
|
25
|
+
Cuando verifico la pagina donde ingresa
|
26
|
+
Cuando si ingreso resultados, espero que termine de cargar la pagina de resultados
|
27
|
+
Entonces si ingreso resultados, verifico que sea la pagina de resultados correcta
|
28
|
+
Y si ingreso resultados, verifico que traiga resultados
|
29
|
+
Y si ingreso resultados, verifico que el valor elejido en landing se encuentre en la lista de resultados
|
30
|
+
Y si ingreso checkout, espero que termine de cargar la pagina de checkout
|
31
|
+
Y si ingreso checkout, verifico que ingrese al checkout
|
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|
|
@@ -0,0 +1,90 @@
|
|
1
|
+
#language: es
|
2
|
+
@results
|
3
|
+
Característica: results.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
|
+
Dado una 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 la pagina de resultados
|
11
|
+
Entonces verifico que traiga resultados
|
12
|
+
Y verifico los textos de las opciones del combo
|
13
|
+
Y verifico las ociones de ordenamiento
|
14
|
+
Entonces elijo moneda local
|
15
|
+
Y filtro por un itinerario en la matriz
|
16
|
+
Cuando espero que termine de cargar la pagina de resultados
|
17
|
+
Entonces verifico la base tarifaria
|
18
|
+
Y verifico el breakdown
|
19
|
+
|
20
|
+
@ar
|
21
|
+
Ejemplos:
|
22
|
+
|pais|tipo|cabotage|
|
23
|
+
|AR |roundtrip|true|
|
24
|
+
|AR |multipledestinations|true|
|
25
|
+
|AR |oneway|nil|
|
26
|
+
@br
|
27
|
+
Ejemplos:
|
28
|
+
|pais|tipo|cabotage|
|
29
|
+
|BR |oneway|true|
|
30
|
+
|BR |roundtrip|true|
|
31
|
+
@co
|
32
|
+
Ejemplos:
|
33
|
+
|pais|tipo|cabotage|
|
34
|
+
|CO |roundtrip|true|
|
35
|
+
|CO |oneway|nil|
|
36
|
+
|CO |multipledestinations|nil|
|
37
|
+
@mx
|
38
|
+
Ejemplos:
|
39
|
+
|pais|tipo|cabotage|
|
40
|
+
|MX |roundtrip|true|
|
41
|
+
|MX |oneway|nil|
|
42
|
+
|MX |multipledestinations|nil|
|
43
|
+
@ve
|
44
|
+
Ejemplos:
|
45
|
+
|pais|tipo|cabotage|
|
46
|
+
|VE |roundtrip|true|
|
47
|
+
|VE |oneway|true|
|
48
|
+
|VE |multipledestinations|true|
|
49
|
+
@cl
|
50
|
+
Ejemplos:
|
51
|
+
|pais|tipo|cabotage|
|
52
|
+
|CL |roundtrip|nil|
|
53
|
+
|CL |oneway|nil|
|
54
|
+
|CL |multipledestinations|nil|
|
55
|
+
@cr
|
56
|
+
Ejemplos:
|
57
|
+
|pais|tipo|cabotage|
|
58
|
+
|CR |roundtrip|true|
|
59
|
+
|CR |oneway|true|
|
60
|
+
|CR |multipledestinations|nil|
|
61
|
+
@ec
|
62
|
+
Ejemplos:
|
63
|
+
|pais|tipo|cabotage|
|
64
|
+
|EC |multipledestinations|true|
|
65
|
+
|EC |roundtrip|nil|
|
66
|
+
|EC |oneway|nil|
|
67
|
+
@pa
|
68
|
+
Ejemplos:
|
69
|
+
|pais|tipo|cabotage|
|
70
|
+
|PA |oneway|true|
|
71
|
+
|PA |multipledestinations|true|
|
72
|
+
|PA |roundtrip|nil|
|
73
|
+
@pe
|
74
|
+
Ejemplos:
|
75
|
+
|pais|tipo|cabotage|
|
76
|
+
|PE |roundtrip|true|
|
77
|
+
|PE |oneway|true|
|
78
|
+
|PE |multipledestinations|nil|
|
79
|
+
@us
|
80
|
+
Ejemplos:
|
81
|
+
|pais|tipo|cabotage|
|
82
|
+
|US |roundtrip|true|
|
83
|
+
|US |oneway|true|
|
84
|
+
|US |multipledestinations|nil|
|
85
|
+
@uy
|
86
|
+
Ejemplos:
|
87
|
+
|pais|tipo|cabotage|
|
88
|
+
|UY |multipledestinations|true|
|
89
|
+
|UY |roundtrip|nil|
|
90
|
+
|UY |oneway|nil|
|