flights_gui_henry_tests 1.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/Gemfile +3 -0
- data/features/data/home-offers-config.csv +883 -0
- data/features/data/host.yml +72 -0
- data/features/data/miles.yml +216 -0
- data/features/data/search.yml +27 -0
- data/features/data/sites.yml +39 -0
- data/features/data/tag_microsoft.yml +68 -0
- data/features/step_definitions/checkout/agencia_steps.rb +6 -0
- data/features/step_definitions/checkout/chat_steps.rb +43 -0
- data/features/step_definitions/checkout/checkout_steps.rb +144 -0
- data/features/step_definitions/checkout/cupones_steps.rb +26 -0
- data/features/step_definitions/checkout/error_messages.rb +251 -0
- data/features/step_definitions/checkout/seguros_steps.rb +78 -0
- data/features/step_definitions/checkout/thanks_steps.rb +75 -0
- data/features/step_definitions/content/contents_steps.rb +140 -0
- data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +73 -0
- data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +43 -0
- data/features/step_definitions/filter/filters_airlines.rb +38 -0
- data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
- data/features/step_definitions/filter/filters_price_steps.rb +87 -0
- data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
- data/features/step_definitions/filter/filters_time_steps.rb +143 -0
- data/features/step_definitions/filter/matrix_steps.rb +249 -0
- data/features/step_definitions/landing/landing_checkout_steps.rb +45 -0
- data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
- data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
- data/features/step_definitions/landing/landing_home_steps.rb +82 -0
- data/features/step_definitions/landing/landing_long_tail.rb +58 -0
- data/features/step_definitions/landing/landing_negative_steps.rb +127 -0
- data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
- data/features/step_definitions/landing/landing_steps.rb +325 -0
- data/features/step_definitions/orders/orders.rb +67 -0
- data/features/step_definitions/others/advancedgui_steps.rb +28 -0
- data/features/step_definitions/others/advancednogui_steps.rb +34 -0
- data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
- data/features/step_definitions/others/flights_tracker_steps.rb +73 -0
- data/features/step_definitions/others/generic_steps.rb +35 -0
- data/features/step_definitions/others/newsletter_steps.rb +50 -0
- data/features/step_definitions/others/one_day_search.rb +58 -0
- data/features/step_definitions/others/print_steps.rb +26 -0
- data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
- data/features/step_definitions/others/recommendation_steps.rb +80 -0
- data/features/step_definitions/others/render_steps.rb +70 -0
- data/features/step_definitions/others/tag_steps.rb +157 -0
- data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
- data/features/step_definitions/results/load_steps.rb +69 -0
- data/features/step_definitions/results/results_steps.rb +21 -0
- data/features/step_definitions/results/search_steps.rb +82 -0
- data/features/step_definitions/search/alerts_steps.rb +132 -0
- data/features/step_definitions/search/basefare_steps.rb +64 -0
- data/features/step_definitions/search/bestprices_steps.rb +70 -0
- data/features/step_definitions/search/cross_sell_row_hoteles.rb +78 -0
- data/features/step_definitions/search/cross_sell_steps.rb +15 -0
- data/features/step_definitions/search/delays_steps.rb +67 -0
- data/features/step_definitions/search/details_steps.rb +9 -0
- data/features/step_definitions/search/ecoflights_steps.rb +9 -0
- data/features/step_definitions/search/fenix_steps.rb +119 -0
- data/features/step_definitions/search/flight_gui_steps.rb +312 -0
- data/features/step_definitions/search/miles_step.rb +13 -0
- data/features/step_definitions/search/pagination_steps.rb +41 -0
- data/features/step_definitions/search/reviews_step.rb +56 -0
- data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
- data/features/step_definitions/search/wish_list_steps.rb +123 -0
- data/features/support/env.rb +61 -0
- data/features/support/lib/clusters/data/datos_new.rb +33 -0
- data/features/support/lib/clusters/details/details_cluster.rb +30 -0
- data/features/support/lib/clusters/results/landing_cluster.rb +29 -0
- data/features/support/lib/clusters/results/render_cluster.rb +43 -0
- data/features/support/lib/clusters/results_cluster.rb +140 -0
- data/features/support/lib/clusters.rb +5 -0
- data/features/support/lib/helpers/browser.rb +212 -0
- data/features/support/lib/helpers/checkout.rb +31 -0
- data/features/support/lib/helpers/clusters.rb +234 -0
- data/features/support/lib/helpers/landing.rb +117 -0
- data/features/support/lib/helpers/render.rb +135 -0
- data/features/support/lib/helpers.rb +5 -0
- data/features/support/lib/price.rb +66 -0
- data/features/support/lib/services/fenix.rb +14 -0
- data/features/support/lib/services/landing.rb +18 -0
- data/features/support/lib/services/results.rb +62 -0
- data/features/support/lib/services.rb +4 -0
- data/features/support/matchers.rb +120 -0
- data/features/support/redefinitions.rb +42 -0
- data/features/tests/checkout/agency.feature +33 -0
- data/features/tests/checkout/button_cac.feature +52 -0
- data/features/tests/checkout/chat.feature +20 -0
- data/features/tests/checkout/cupones.feature +54 -0
- data/features/tests/checkout/error_messages.feature +64 -0
- data/features/tests/checkout/integration.feature +215 -0
- data/features/tests/checkout/low_cost.feature +55 -0
- data/features/tests/checkout/seguros.feature +37 -0
- data/features/tests/contents/costs.feature +29 -0
- data/features/tests/contents/rules.feature +58 -0
- data/features/tests/contents/webcheckin.feature +26 -0
- data/features/tests/desambiguation/airports.feature +89 -0
- data/features/tests/desambiguation/city.feature +86 -0
- data/features/tests/filters/filters.feature +160 -0
- data/features/tests/fixes/advancedgui.feature +171 -0
- data/features/tests/fixes/advancednogui.feature +60 -0
- data/features/tests/fixes/book_no_gui.feature +21 -0
- data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
- data/features/tests/fixes/facebook.feature +31 -0
- data/features/tests/fixes/landing_home_alerts.feature +82 -0
- data/features/tests/fixes/matrix_stops.feature +104 -0
- data/features/tests/fixes/one_day_search.feature +63 -0
- data/features/tests/fixes/print.feature +87 -0
- data/features/tests/fixes/searches_no_gui.feature +85 -0
- data/features/tests/landing/landing_alerts.feature +93 -0
- data/features/tests/landing/landing_checkout.feature +286 -0
- data/features/tests/landing/landing_filters.feature +176 -0
- data/features/tests/landing/landing_home.feature +68 -0
- data/features/tests/landing/landing_integration.feature +153 -0
- data/features/tests/landing/landing_long_tail.feature +162 -0
- data/features/tests/landing/landing_matrix.feature +156 -0
- data/features/tests/landing/landing_negative.feature +157 -0
- data/features/tests/landing/landing_orders.feature +107 -0
- data/features/tests/landing/landing_pagination.feature +142 -0
- data/features/tests/landing/landing_passenger_review.feature +139 -0
- data/features/tests/landing/landing_positive.feature +155 -0
- data/features/tests/landing/landing_reviews.feature +139 -0
- data/features/tests/landing/landing_tags.feature +148 -0
- data/features/tests/matrix/matrix_airlines.feature +104 -0
- data/features/tests/matrix/matrix_fare_chart.feature +24 -0
- data/features/tests/matrix/matrix_price.feature +35 -0
- data/features/tests/others/alerts.feature +89 -0
- data/features/tests/others/anticipatedsearch.feature +82 -0
- data/features/tests/others/flights_tracker.feature +94 -0
- data/features/tests/others/newsletter.feature +131 -0
- data/features/tests/others/querystringparameters.feature +82 -0
- data/features/tests/others/recommendation.feature +170 -0
- data/features/tests/others/semaphore.feature +206 -0
- data/features/tests/others/upgrade_bussines.feature +100 -0
- data/features/tests/search/basefare.feature +88 -0
- data/features/tests/search/itineraries.feature +85 -0
- data/features/tests/search/orders.feature +100 -0
- data/features/tests/search/pagination.feature +70 -0
- data/features/tests/search/reviews.feature +84 -0
- data/features/tests/search/searches.feature +197 -0
- data/features/tests/search/wish_list.feature +102 -0
- data/flights_gui_henry_tests.gemspec +32 -0
- data/henry-context.yml +14733 -0
- metadata +324 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@landing
|
|
3
|
+
Característica: landing.reviews
|
|
4
|
+
Se verifica que el popup de reviews este correcto y tenga datos consistentes
|
|
5
|
+
|
|
6
|
+
@reviews
|
|
7
|
+
Esquema del escenario: Ingresar a la pagina de landing e iterar por cada popup de review
|
|
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
|
+
Entonces Verifico cada review "<pais>"
|
|
19
|
+
|
|
20
|
+
@ar
|
|
21
|
+
@roundtrip
|
|
22
|
+
Ejemplos:
|
|
23
|
+
|pais|tipo|
|
|
24
|
+
|AR |roundtrip|
|
|
25
|
+
@ar
|
|
26
|
+
@oneway
|
|
27
|
+
Ejemplos:
|
|
28
|
+
|pais|tipo|
|
|
29
|
+
|AR |oneway|
|
|
30
|
+
@br
|
|
31
|
+
@roundtrip
|
|
32
|
+
Ejemplos:
|
|
33
|
+
|pais|tipo|
|
|
34
|
+
|BR |roundtrip|
|
|
35
|
+
@br
|
|
36
|
+
@oneway
|
|
37
|
+
Ejemplos:
|
|
38
|
+
|pais|tipo|
|
|
39
|
+
|BR |oneway|
|
|
40
|
+
@co
|
|
41
|
+
@roundtrip
|
|
42
|
+
Ejemplos:
|
|
43
|
+
|pais|tipo|
|
|
44
|
+
|CO |roundtrip|
|
|
45
|
+
@co
|
|
46
|
+
@oneway
|
|
47
|
+
Ejemplos:
|
|
48
|
+
|pais|tipo|
|
|
49
|
+
|CO |oneway|
|
|
50
|
+
@cl
|
|
51
|
+
@roundtrip
|
|
52
|
+
Ejemplos:
|
|
53
|
+
|pais|tipo|
|
|
54
|
+
|CL |roundtrip|
|
|
55
|
+
@cl
|
|
56
|
+
@oneway
|
|
57
|
+
Ejemplos:
|
|
58
|
+
|pais|tipo|
|
|
59
|
+
|CL |oneway|
|
|
60
|
+
@cr
|
|
61
|
+
@roundtrip
|
|
62
|
+
Ejemplos:
|
|
63
|
+
|pais|tipo|
|
|
64
|
+
|CR |roundtrip|
|
|
65
|
+
@cr
|
|
66
|
+
@oneway
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|
|
|
69
|
+
|CR |oneway|
|
|
70
|
+
@ec
|
|
71
|
+
@roundtrip
|
|
72
|
+
Ejemplos:
|
|
73
|
+
|pais|tipo|
|
|
74
|
+
|EC |roundtrip|
|
|
75
|
+
@ec
|
|
76
|
+
@oneway
|
|
77
|
+
Ejemplos:
|
|
78
|
+
|pais|tipo|
|
|
79
|
+
|EC |oneway|
|
|
80
|
+
@mx
|
|
81
|
+
@roundtrip
|
|
82
|
+
Ejemplos:
|
|
83
|
+
|pais|tipo|
|
|
84
|
+
|MX |roundtrip|
|
|
85
|
+
@mx
|
|
86
|
+
@oneway
|
|
87
|
+
Ejemplos:
|
|
88
|
+
|pais|tipo|
|
|
89
|
+
|MX |oneway|
|
|
90
|
+
@pa
|
|
91
|
+
@roundtrip
|
|
92
|
+
Ejemplos:
|
|
93
|
+
|pais|tipo|
|
|
94
|
+
|PA |roundtrip|
|
|
95
|
+
@pa
|
|
96
|
+
@oneway
|
|
97
|
+
Ejemplos:
|
|
98
|
+
|pais|tipo|
|
|
99
|
+
|PA |oneway|
|
|
100
|
+
@pe
|
|
101
|
+
@roundtrip
|
|
102
|
+
Ejemplos:
|
|
103
|
+
|pais|tipo|
|
|
104
|
+
|PE |roundtrip|
|
|
105
|
+
@pe
|
|
106
|
+
@oneway
|
|
107
|
+
Ejemplos:
|
|
108
|
+
|pais|tipo|
|
|
109
|
+
|PE |oneway|
|
|
110
|
+
@us
|
|
111
|
+
@roundtrip
|
|
112
|
+
Ejemplos:
|
|
113
|
+
|pais|tipo|
|
|
114
|
+
|US |roundtrip|
|
|
115
|
+
@us
|
|
116
|
+
@oneway
|
|
117
|
+
Ejemplos:
|
|
118
|
+
|pais|tipo|
|
|
119
|
+
|US |oneway|
|
|
120
|
+
@uy
|
|
121
|
+
@roundtrip
|
|
122
|
+
Ejemplos:
|
|
123
|
+
|pais|tipo|
|
|
124
|
+
|UY |roundtrip|
|
|
125
|
+
@uy
|
|
126
|
+
@oneway
|
|
127
|
+
Ejemplos:
|
|
128
|
+
|pais|tipo|
|
|
129
|
+
|UY |oneway|
|
|
130
|
+
@ve
|
|
131
|
+
@roundtrip
|
|
132
|
+
Ejemplos:
|
|
133
|
+
|pais|tipo|
|
|
134
|
+
|VE |roundtrip|
|
|
135
|
+
@ve
|
|
136
|
+
@oneway
|
|
137
|
+
Ejemplos:
|
|
138
|
+
|pais|tipo|
|
|
139
|
+
|VE |oneway|
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@landing
|
|
3
|
+
Característica: landing.tags
|
|
4
|
+
Se verifica que los tags esten presentes y tengan los datos correctos
|
|
5
|
+
|
|
6
|
+
@tags
|
|
7
|
+
Esquema del escenario: Ingresar a la home de landing, buscar los tags y validarlos
|
|
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
|
+
Y Verifico el tag de remarketing de facebook
|
|
12
|
+
Y Verifico el tag de facebook
|
|
13
|
+
Cuando Elijo un link para pasar a los resultados de landing
|
|
14
|
+
Cuando Ingreso a resultados de landing
|
|
15
|
+
Entonces Verifico que la pagina no rompa
|
|
16
|
+
Entonces Verifico que traiga resultados de landings
|
|
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
|
+
Y Verifico el tag de remarketing de facebook
|
|
21
|
+
Y Verifico el tag de facebook
|
|
22
|
+
Y Verifico el pixel de e-planning
|
|
23
|
+
Y Verifico el primer tag de google en resultado de landing
|
|
24
|
+
Y Verifico el segundo tag de google en resultado de landing
|
|
25
|
+
Y Verifico el tag de groovinads
|
|
26
|
+
Cuando Si el site es "AR|BR", Levanto los tag que deben mostrarse segun la ciudad buscada para landing
|
|
27
|
+
Entonces Si el site es "AR|BR", Verifico que se muestre en el codigo fuente
|
|
28
|
+
|
|
29
|
+
@ar
|
|
30
|
+
@roundtrip
|
|
31
|
+
Ejemplos:
|
|
32
|
+
|pais|tipo|
|
|
33
|
+
|AR |roundtrip|
|
|
34
|
+
@ar
|
|
35
|
+
@oneway
|
|
36
|
+
Ejemplos:
|
|
37
|
+
|pais|tipo|
|
|
38
|
+
|AR |oneway|
|
|
39
|
+
@br
|
|
40
|
+
@roundtrip
|
|
41
|
+
Ejemplos:
|
|
42
|
+
|pais|tipo|
|
|
43
|
+
|BR |roundtrip|
|
|
44
|
+
@br
|
|
45
|
+
@oneway
|
|
46
|
+
Ejemplos:
|
|
47
|
+
|pais|tipo|
|
|
48
|
+
|BR |oneway|
|
|
49
|
+
@co
|
|
50
|
+
@roundtrip
|
|
51
|
+
Ejemplos:
|
|
52
|
+
|pais|tipo|
|
|
53
|
+
|CO |roundtrip|
|
|
54
|
+
@co
|
|
55
|
+
@oneway
|
|
56
|
+
Ejemplos:
|
|
57
|
+
|pais|tipo|
|
|
58
|
+
|CO |oneway|
|
|
59
|
+
@cl
|
|
60
|
+
@roundtrip
|
|
61
|
+
Ejemplos:
|
|
62
|
+
|pais|tipo|
|
|
63
|
+
|CL |roundtrip|
|
|
64
|
+
@cl
|
|
65
|
+
@oneway
|
|
66
|
+
Ejemplos:
|
|
67
|
+
|pais|tipo|
|
|
68
|
+
|CL |oneway|
|
|
69
|
+
@cr
|
|
70
|
+
@roundtrip
|
|
71
|
+
Ejemplos:
|
|
72
|
+
|pais|tipo|
|
|
73
|
+
|CR |roundtrip|
|
|
74
|
+
@cr
|
|
75
|
+
@oneway
|
|
76
|
+
Ejemplos:
|
|
77
|
+
|pais|tipo|
|
|
78
|
+
|CR |oneway|
|
|
79
|
+
@ec
|
|
80
|
+
@roundtrip
|
|
81
|
+
Ejemplos:
|
|
82
|
+
|pais|tipo|
|
|
83
|
+
|EC |roundtrip|
|
|
84
|
+
@ec
|
|
85
|
+
@oneway
|
|
86
|
+
Ejemplos:
|
|
87
|
+
|pais|tipo|
|
|
88
|
+
|EC |oneway|
|
|
89
|
+
@mx
|
|
90
|
+
@roundtrip
|
|
91
|
+
Ejemplos:
|
|
92
|
+
|pais|tipo|
|
|
93
|
+
|MX |roundtrip|
|
|
94
|
+
@mx
|
|
95
|
+
@oneway
|
|
96
|
+
Ejemplos:
|
|
97
|
+
|pais|tipo|
|
|
98
|
+
|MX |oneway|
|
|
99
|
+
@pa
|
|
100
|
+
@roundtrip
|
|
101
|
+
Ejemplos:
|
|
102
|
+
|pais|tipo|
|
|
103
|
+
|PA |roundtrip|
|
|
104
|
+
@pa
|
|
105
|
+
@oneway
|
|
106
|
+
Ejemplos:
|
|
107
|
+
|pais|tipo|
|
|
108
|
+
|PA |oneway|
|
|
109
|
+
@pe
|
|
110
|
+
@roundtrip
|
|
111
|
+
Ejemplos:
|
|
112
|
+
|pais|tipo|
|
|
113
|
+
|PE |roundtrip|
|
|
114
|
+
@pe
|
|
115
|
+
@oneway
|
|
116
|
+
Ejemplos:
|
|
117
|
+
|pais|tipo|
|
|
118
|
+
|PE |oneway|
|
|
119
|
+
@us
|
|
120
|
+
@roundtrip
|
|
121
|
+
Ejemplos:
|
|
122
|
+
|pais|tipo|
|
|
123
|
+
|US |roundtrip|
|
|
124
|
+
@us
|
|
125
|
+
@oneway
|
|
126
|
+
Ejemplos:
|
|
127
|
+
|pais|tipo|
|
|
128
|
+
|US |oneway|
|
|
129
|
+
@uy
|
|
130
|
+
@roundtrip
|
|
131
|
+
Ejemplos:
|
|
132
|
+
|pais|tipo|
|
|
133
|
+
|UY |roundtrip|
|
|
134
|
+
@uy
|
|
135
|
+
@oneway
|
|
136
|
+
Ejemplos:
|
|
137
|
+
|pais|tipo|
|
|
138
|
+
|UY |oneway|
|
|
139
|
+
@ve
|
|
140
|
+
@roundtrip
|
|
141
|
+
Ejemplos:
|
|
142
|
+
|pais|tipo|
|
|
143
|
+
|VE |roundtrip|
|
|
144
|
+
@ve
|
|
145
|
+
@oneway
|
|
146
|
+
Ejemplos:
|
|
147
|
+
|pais|tipo|
|
|
148
|
+
|VE |oneway|
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@matrix
|
|
3
|
+
Característica: matrix.airlines
|
|
4
|
+
Se verifica que al aplicar matriz sobre aerolineas en resultados de vuelos este se aplique correctamente.
|
|
5
|
+
|
|
6
|
+
@airlines
|
|
7
|
+
Esquema del escenario: Ingresar a resultados, filtrar por alguna aerolinea en la matriz y verificar que la pagina no rompa y que los clusters sean correctos
|
|
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 Elijo en la matriz una aerolinea a aplicar
|
|
12
|
+
Entonces Filtro por matriz una aerolinea
|
|
13
|
+
Cuando Espero que termine de cargar
|
|
14
|
+
Entonces Verifico que la pagina no rompa
|
|
15
|
+
Y Verifico que la primer pagina muestre correctamente los filtros de aerolineas
|
|
16
|
+
Y Valido mensaje del filtro por aerolinea
|
|
17
|
+
Cuando Limpio la matriz
|
|
18
|
+
Cuando Espero que termine de cargar
|
|
19
|
+
Entonces Verifico que la pagina no rompa
|
|
20
|
+
|
|
21
|
+
@ar
|
|
22
|
+
Ejemplos:
|
|
23
|
+
|pais|tipo|cabotage|
|
|
24
|
+
|AR |roundtrip|nil|
|
|
25
|
+
|AR |oneway|nil|
|
|
26
|
+
|AR |roundtrip|true|
|
|
27
|
+
|AR |oneway|true|
|
|
28
|
+
@br
|
|
29
|
+
Ejemplos:
|
|
30
|
+
|pais|tipo|cabotage|
|
|
31
|
+
|BR |oneway|true|
|
|
32
|
+
|BR |roundtrip|true|
|
|
33
|
+
|BR |oneway|nil|
|
|
34
|
+
|BR |roundtrip|nil|
|
|
35
|
+
@co
|
|
36
|
+
Ejemplos:
|
|
37
|
+
|pais|tipo|cabotage|
|
|
38
|
+
|CO |roundtrip|nil|
|
|
39
|
+
|CO |oneway|nil|
|
|
40
|
+
|CO |roundtrip|true|
|
|
41
|
+
|CO |oneway|true|
|
|
42
|
+
@cl
|
|
43
|
+
Ejemplos:
|
|
44
|
+
|pais|tipo|cabotage|
|
|
45
|
+
|CL |roundtrip|nil|
|
|
46
|
+
|CL |oneway|nil|
|
|
47
|
+
|CL |roundtrip|true|
|
|
48
|
+
|CL |oneway|true|
|
|
49
|
+
@cr
|
|
50
|
+
Ejemplos:
|
|
51
|
+
|pais|tipo|cabotage|
|
|
52
|
+
|CR |roundtrip|nil|
|
|
53
|
+
|CR |oneway|nil|
|
|
54
|
+
|CR |roundtrip|true|
|
|
55
|
+
|CR |oneway|true|
|
|
56
|
+
@ec
|
|
57
|
+
Ejemplos:
|
|
58
|
+
|pais|tipo|cabotage|
|
|
59
|
+
|EC |roundtrip|nil|
|
|
60
|
+
|EC |oneway|nil|
|
|
61
|
+
|EC |roundtrip|true|
|
|
62
|
+
|EC |oneway|true|
|
|
63
|
+
@mx
|
|
64
|
+
Ejemplos:
|
|
65
|
+
|pais|tipo|cabotage|
|
|
66
|
+
|MX |roundtrip|nil|
|
|
67
|
+
|MX |oneway|nil|
|
|
68
|
+
|MX |roundtrip|true|
|
|
69
|
+
|MX |oneway|true|
|
|
70
|
+
@pa
|
|
71
|
+
Ejemplos:
|
|
72
|
+
|pais|tipo|cabotage|
|
|
73
|
+
|PA |roundtrip|nil|
|
|
74
|
+
|PA |oneway|nil|
|
|
75
|
+
|PA |roundtrip|true|
|
|
76
|
+
|PA |oneway|true|
|
|
77
|
+
@pe
|
|
78
|
+
Ejemplos:
|
|
79
|
+
|pais|tipo|cabotage|
|
|
80
|
+
|PE |roundtrip|nil|
|
|
81
|
+
|PE |oneway|nil|
|
|
82
|
+
|PE |roundtrip|true|
|
|
83
|
+
|PE |oneway|true|
|
|
84
|
+
@us
|
|
85
|
+
Ejemplos:
|
|
86
|
+
|pais|tipo|cabotage|
|
|
87
|
+
|US |roundtrip|nil|
|
|
88
|
+
|US |oneway|nil|
|
|
89
|
+
|US |roundtrip|true|
|
|
90
|
+
|US |oneway|true|
|
|
91
|
+
@uy
|
|
92
|
+
Ejemplos:
|
|
93
|
+
|pais|tipo|cabotage|
|
|
94
|
+
|UY |roundtrip|nil|
|
|
95
|
+
|UY |oneway|nil|
|
|
96
|
+
|UY |roundtrip|true|
|
|
97
|
+
|UY |oneway|true|
|
|
98
|
+
@ve
|
|
99
|
+
Ejemplos:
|
|
100
|
+
|pais|tipo|cabotage|
|
|
101
|
+
|VE |roundtrip|nil|
|
|
102
|
+
|VE |oneway|nil|
|
|
103
|
+
|VE |roundtrip|true|
|
|
104
|
+
|VE |oneway|true|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@matrix
|
|
3
|
+
Característica: matrix.fare_chart
|
|
4
|
+
Se verifica que al aplicar matriz sobre tendencia de precios en resultados de vuelos este se aplique correctamente.
|
|
5
|
+
|
|
6
|
+
@fare_chart
|
|
7
|
+
Esquema del escenario: Ingresar a resultados, mostrar la matriz de tendencia de precios y verificar el correcto funcionamiento.
|
|
8
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "<from>" y destino "<to>" de tipo "<cabotage>"
|
|
9
|
+
Cuando Espero que termine de cargar
|
|
10
|
+
Entonces Verifico que traiga resultados
|
|
11
|
+
Cuando Fuerzo el abztesting de showFareChart al "45"
|
|
12
|
+
Y Refresco la pagina
|
|
13
|
+
Cuando Espero que termine de cargar
|
|
14
|
+
Y Ingreso a la matriz de tendencia de precios
|
|
15
|
+
Y Verifico el l&f de la matriz de tendencia de precios
|
|
16
|
+
Y Verifico que la matriz cumpla con el rango de fechas de la busqueda
|
|
17
|
+
Y Verificar que los datos mostrados en la matriz sean correctos
|
|
18
|
+
Y Verificar que filtre por una celda de la matriz
|
|
19
|
+
|
|
20
|
+
@co
|
|
21
|
+
Ejemplos:
|
|
22
|
+
|pais|tipo|from|to|cabotage|
|
|
23
|
+
|CO |roundtrip|bog|mia|nil|
|
|
24
|
+
|CO |oneway|bog|mia|nil|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@matrix
|
|
3
|
+
Característica: matrix.price
|
|
4
|
+
Se verifica que la matriz de precios funcione correctamente
|
|
5
|
+
|
|
6
|
+
@price
|
|
7
|
+
Esquema del escenario: Ingresar a la pagina de resultados y verificar la matriz de resultados
|
|
8
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "SAO" y destino "RIO" de tipo "<cabotage>"
|
|
9
|
+
Cuando Espero que termine de cargar
|
|
10
|
+
Entonces Verifico que traiga resultados
|
|
11
|
+
Y Si no se muestra la matriz de precios, Realizo las busquedas para recargar la matriz
|
|
12
|
+
Cuando Espero que termine de cargar
|
|
13
|
+
Entonces Verifico que se muestre la matriz de precios
|
|
14
|
+
Y Verifico la correcta disposicion de la matriz de precios
|
|
15
|
+
Y Verifico las fechas de la matriz de precios
|
|
16
|
+
Y Verifico que la fechas buscadas sea la central en la matriz de precios
|
|
17
|
+
Y Verifico que exista otra fecha con precio en la matriz de precios
|
|
18
|
+
Entonces Espero que termine de cargar
|
|
19
|
+
Entonces Verifico que se muestre la matriz de precios
|
|
20
|
+
Y Verifico la correcta disposicion de la matriz de precios
|
|
21
|
+
Y Verifico las fechas de la matriz de precios
|
|
22
|
+
Y Verifico que la fechas buscadas sea la central en la matriz de precios
|
|
23
|
+
Y Verifico que el precio mostrado en la matriz sea el primero en los itinerarios
|
|
24
|
+
Y Elijo una opcion sin precio en la matriz de precios
|
|
25
|
+
Entonces Espero que termine de cargar
|
|
26
|
+
Entonces Verifico que se muestre la matriz de precios
|
|
27
|
+
Y Verifico la correcta disposicion de la matriz de precios
|
|
28
|
+
Y Verifico las fechas de la matriz de precios
|
|
29
|
+
Y Verifico que la fechas buscadas sea la central en la matriz de precios
|
|
30
|
+
|
|
31
|
+
@br
|
|
32
|
+
@roundtrip
|
|
33
|
+
Ejemplos:
|
|
34
|
+
|pais|tipo|cabotage|
|
|
35
|
+
|BR |roundtrip|true|
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.alerts
|
|
4
|
+
Se verifica que el popup de alertas funcione correctamente
|
|
5
|
+
|
|
6
|
+
@alerts
|
|
7
|
+
Esquema del escenario: Abrir el popup y configurar las alertas
|
|
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
|
+
Entonces Verifico que exista el panel de alertas
|
|
12
|
+
Cuando Abro el popup de alertas
|
|
13
|
+
Entonces Verifico que cargue correctamente el popup de alertas
|
|
14
|
+
Entonces Comparo el campo origen
|
|
15
|
+
Entonces Comparo el campo destino
|
|
16
|
+
Cuando Edito el campo origen
|
|
17
|
+
Entonces Validar que el campo origen sea obligatorio
|
|
18
|
+
Cuando Completo el campo origen
|
|
19
|
+
Cuando Edito el campo destino
|
|
20
|
+
Entonces Validar que el campo destino sea obligatorio
|
|
21
|
+
Cuando Completo el campo destino
|
|
22
|
+
Cuando Hago click en guardar alerta
|
|
23
|
+
Cuando Selecciono Solo ida
|
|
24
|
+
Cuando Selecciono Ida y vuelta
|
|
25
|
+
Cuando Selecciono una fecha especifica
|
|
26
|
+
Cuando Selecciono una fecha aproximada
|
|
27
|
+
Cuando Completo el precio maximo por adulto ""
|
|
28
|
+
Cuando Hago click en guardar alerta
|
|
29
|
+
Entonces Validar que el campo precio maximo por adulto sea obligatorio
|
|
30
|
+
Entonces Validar que el campo email sea obligatorio
|
|
31
|
+
Cuando Completo el precio maximo por adulto "999"
|
|
32
|
+
Cuando Completo el email "testvuelos"
|
|
33
|
+
Cuando Hago click en guardar alerta
|
|
34
|
+
Entonces Validar que el campo email tenga un email valido
|
|
35
|
+
Cuando Completo el email "testvuelos@despegar.com"
|
|
36
|
+
Cuando Hago click en guardar alerta
|
|
37
|
+
Entonces Esperar que se muestre el mensaje de alerta
|
|
38
|
+
Y Validar que el mensaje sea correcto
|
|
39
|
+
Cuando Cierro el popup de alertas
|
|
40
|
+
Entonces Validar que se haya cerrado el popup de alertas
|
|
41
|
+
|
|
42
|
+
@ar
|
|
43
|
+
Ejemplos:
|
|
44
|
+
|pais|tipo|
|
|
45
|
+
|AR |roundtrip|
|
|
46
|
+
@br
|
|
47
|
+
Ejemplos:
|
|
48
|
+
|pais|tipo|
|
|
49
|
+
|BR |roundtrip|
|
|
50
|
+
@co
|
|
51
|
+
Ejemplos:
|
|
52
|
+
|pais|tipo|
|
|
53
|
+
|CO |roundtrip|
|
|
54
|
+
@cl
|
|
55
|
+
Ejemplos:
|
|
56
|
+
|pais|tipo|
|
|
57
|
+
|CL |roundtrip|
|
|
58
|
+
@cr
|
|
59
|
+
Ejemplos:
|
|
60
|
+
|pais|tipo|
|
|
61
|
+
|CR |roundtrip|
|
|
62
|
+
@ec
|
|
63
|
+
Ejemplos:
|
|
64
|
+
|pais|tipo|
|
|
65
|
+
|EC |roundtrip|
|
|
66
|
+
@mx
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|
|
|
69
|
+
|MX |roundtrip|
|
|
70
|
+
@pa
|
|
71
|
+
Ejemplos:
|
|
72
|
+
|pais|tipo|
|
|
73
|
+
|PA |roundtrip|
|
|
74
|
+
@pe
|
|
75
|
+
Ejemplos:
|
|
76
|
+
|pais|tipo|
|
|
77
|
+
|PE |roundtrip|
|
|
78
|
+
@us
|
|
79
|
+
Ejemplos:
|
|
80
|
+
|pais|tipo|
|
|
81
|
+
|US |roundtrip|
|
|
82
|
+
@uy
|
|
83
|
+
Ejemplos:
|
|
84
|
+
|pais|tipo|
|
|
85
|
+
|UY |roundtrip|
|
|
86
|
+
@ve
|
|
87
|
+
Ejemplos:
|
|
88
|
+
|pais|tipo|
|
|
89
|
+
|VE |roundtrip|
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@anticipatedSearch
|
|
3
|
+
Característica: anticipatedSearch
|
|
4
|
+
Busqueda anticipada
|
|
5
|
+
|
|
6
|
+
Esquema del escenario: Ingresar a resultados y probar con diferentes combianciones de filtros
|
|
7
|
+
Entonces Verifico la busqueda anticipada "<pais>""<cabotage>""<tipo>"
|
|
8
|
+
|
|
9
|
+
Ejemplos:
|
|
10
|
+
|pais|cabotage|tipo|
|
|
11
|
+
|AR |true|roundtrip|
|
|
12
|
+
|BR |true|roundtrip|
|
|
13
|
+
|CO |true|roundtrip|
|
|
14
|
+
|CL |true|roundtrip|
|
|
15
|
+
|CR |true|roundtrip|
|
|
16
|
+
|EC |true|roundtrip|
|
|
17
|
+
|MX |true|roundtrip|
|
|
18
|
+
|PA |true|roundtrip|
|
|
19
|
+
|PE |true|roundtrip|
|
|
20
|
+
|US |true|roundtrip|
|
|
21
|
+
|UY |true|roundtrip|
|
|
22
|
+
|VE |true|roundtrip|
|
|
23
|
+
|AR |nil|roundtrip|
|
|
24
|
+
|BR |nil|roundtrip|
|
|
25
|
+
|CO |nil|roundtrip|
|
|
26
|
+
|CL |nil|roundtrip|
|
|
27
|
+
|CR |nil|roundtrip|
|
|
28
|
+
|EC |nil|roundtrip|
|
|
29
|
+
|MX |nil|roundtrip|
|
|
30
|
+
|PA |nil|roundtrip|
|
|
31
|
+
|PE |nil|roundtrip|
|
|
32
|
+
|US |nil|roundtrip|
|
|
33
|
+
|UY |nil|roundtrip|
|
|
34
|
+
|VE |nil|roundtrip|
|
|
35
|
+
|AR |true|multipledestinations|
|
|
36
|
+
|BR |true|multipledestinations|
|
|
37
|
+
|CO |true|multipledestinations|
|
|
38
|
+
|CL |true|multipledestinations|
|
|
39
|
+
|CR |true|multipledestinations|
|
|
40
|
+
|EC |true|multipledestinations|
|
|
41
|
+
|MX |true|multipledestinations|
|
|
42
|
+
|PA |true|multipledestinations|
|
|
43
|
+
|PE |true|multipledestinations|
|
|
44
|
+
|US |true|multipledestinations|
|
|
45
|
+
|UY |true|multipledestinations|
|
|
46
|
+
|VE |true|multipledestinations|
|
|
47
|
+
|AR |nil|multipledestinations|
|
|
48
|
+
|BR |nil|multipledestinations|
|
|
49
|
+
|CO |nil|multipledestinations|
|
|
50
|
+
|CL |nil|multipledestinations|
|
|
51
|
+
|CR |nil|multipledestinations|
|
|
52
|
+
|EC |nil|multipledestinations|
|
|
53
|
+
|MX |nil|multipledestinations|
|
|
54
|
+
|PA |nil|multipledestinations|
|
|
55
|
+
|PE |nil|multipledestinations|
|
|
56
|
+
|US |nil|multipledestinations|
|
|
57
|
+
|UY |nil|multipledestinations|
|
|
58
|
+
|VE |nil|multipledestinations|
|
|
59
|
+
|AR |true|oneway|
|
|
60
|
+
|BR |true|oneway|
|
|
61
|
+
|CO |true|oneway|
|
|
62
|
+
|CL |true|oneway|
|
|
63
|
+
|CR |true|oneway|
|
|
64
|
+
|EC |true|oneway|
|
|
65
|
+
|MX |true|oneway|
|
|
66
|
+
|PA |true|oneway|
|
|
67
|
+
|PE |true|oneway|
|
|
68
|
+
|US |true|oneway|
|
|
69
|
+
|UY |true|oneway|
|
|
70
|
+
|VE |true|oneway|
|
|
71
|
+
|AR |nil|oneway|
|
|
72
|
+
|BR |nil|oneway|
|
|
73
|
+
|CO |nil|oneway|
|
|
74
|
+
|CL |nil|oneway|
|
|
75
|
+
|CR |nil|oneway|
|
|
76
|
+
|EC |nil|oneway|
|
|
77
|
+
|MX |nil|oneway|
|
|
78
|
+
|PA |nil|oneway|
|
|
79
|
+
|PE |nil|oneway|
|
|
80
|
+
|US |nil|oneway|
|
|
81
|
+
|UY |nil|oneway|
|
|
82
|
+
|VE |nil|oneway|
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.flights_tracker
|
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de trackero de vuelos
|
|
5
|
+
|
|
6
|
+
@flights_tracker
|
|
7
|
+
Esquema del escenario: Ingresar a la pagina de trackeo de vuelos
|
|
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 Ingreso a la pagina de trackeo de vuelos "<pais>"
|
|
12
|
+
Y Espero que termine de cargar la pagina de trackeo de vuelos
|
|
13
|
+
Y Verifico que se encuentren los elementos de la pagina de trackeo de vuelos
|
|
14
|
+
Cuando Ingreso aerolinea
|
|
15
|
+
Y Ingreso numero de vuelo "3333"
|
|
16
|
+
Y Ingreso fecha de partida "YESTERDAY"
|
|
17
|
+
Y Selecciono buscar
|
|
18
|
+
Cuando Espero que termine de cargar el vuelo trackeado
|
|
19
|
+
Entonces Verifico que no encuentre resultados de trackeo
|
|
20
|
+
Cuando Ingreso aerolinea
|
|
21
|
+
Y Ingreso numero de vuelo "1298"
|
|
22
|
+
Y Ingreso fecha de partida "TOMORROW"
|
|
23
|
+
Y Selecciono buscar
|
|
24
|
+
Cuando Espero que termine de cargar el vuelo trackeado
|
|
25
|
+
Entonces Verifico que encuentre resultados de trackeo
|
|
26
|
+
Y Verifico que los datos de trackeo sean correctos
|
|
27
|
+
Cuando Ingreso aerolinea
|
|
28
|
+
Y Elijo no se el numero de vuelo
|
|
29
|
+
Y Elijo origen
|
|
30
|
+
Y Elijo destino
|
|
31
|
+
Y Elijo horario de partida "0-7"
|
|
32
|
+
Y Ingreso fecha de partida "TODAY"
|
|
33
|
+
Y Selecciono buscar
|
|
34
|
+
Cuando Espero que termine de cargar el vuelo trackeado
|
|
35
|
+
Entonces Verifico que encuentre resultados de trackeo
|
|
36
|
+
Y Verifico que los datos de trackeo sean correctos
|
|
37
|
+
Cuando Ingreso aerolinea
|
|
38
|
+
Y Elijo no se el numero de vuelo
|
|
39
|
+
Y Elijo origen
|
|
40
|
+
Y Elijo destino
|
|
41
|
+
Y Elijo horario de partida "12-18"
|
|
42
|
+
Y Ingreso fecha de partida "TODAY"
|
|
43
|
+
Y Selecciono buscar
|
|
44
|
+
Cuando Espero que termine de cargar el vuelo trackeado
|
|
45
|
+
Entonces Verifico que no encuentre resultados de trackeo
|
|
46
|
+
|
|
47
|
+
@ar
|
|
48
|
+
Ejemplos:
|
|
49
|
+
|pais|
|
|
50
|
+
|AR |
|
|
51
|
+
@br
|
|
52
|
+
Ejemplos:
|
|
53
|
+
|pais|
|
|
54
|
+
|BR |
|
|
55
|
+
@co
|
|
56
|
+
Ejemplos:
|
|
57
|
+
|pais|
|
|
58
|
+
|CO |
|
|
59
|
+
@cl
|
|
60
|
+
Ejemplos:
|
|
61
|
+
|pais|
|
|
62
|
+
|CL |
|
|
63
|
+
@cr
|
|
64
|
+
Ejemplos:
|
|
65
|
+
|pais|
|
|
66
|
+
|CR |
|
|
67
|
+
@ec
|
|
68
|
+
Ejemplos:
|
|
69
|
+
|pais|
|
|
70
|
+
|EC |
|
|
71
|
+
@mx
|
|
72
|
+
Ejemplos:
|
|
73
|
+
|pais|
|
|
74
|
+
|MX |
|
|
75
|
+
@pa
|
|
76
|
+
Ejemplos:
|
|
77
|
+
|pais|
|
|
78
|
+
|PA |
|
|
79
|
+
@pe
|
|
80
|
+
Ejemplos:
|
|
81
|
+
|pais|
|
|
82
|
+
|PE |
|
|
83
|
+
@us
|
|
84
|
+
Ejemplos:
|
|
85
|
+
|pais|
|
|
86
|
+
|US |
|
|
87
|
+
@uy
|
|
88
|
+
Ejemplos:
|
|
89
|
+
|pais|
|
|
90
|
+
|UY |
|
|
91
|
+
@ve
|
|
92
|
+
Ejemplos:
|
|
93
|
+
|pais|
|
|
94
|
+
|VE |
|