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,131 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.newsletter
|
|
4
|
+
Se verifica que el popup de newsletter funcione correctamente
|
|
5
|
+
|
|
6
|
+
@newsletter
|
|
7
|
+
Esquema del escenario: Entrar a resultados y forzar el popup de newsletter grande
|
|
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 Fuerzo la cookie de newsletter
|
|
12
|
+
Y Fuerzo el abztesting de newsletter al "30"
|
|
13
|
+
Y Refresco la pagina
|
|
14
|
+
Y Verifico que se creen las cookies
|
|
15
|
+
Cuando Espero que termine de cargar
|
|
16
|
+
Y Refresco la pagina
|
|
17
|
+
Entonces Verifico que cargue correctamente el popup de alertas
|
|
18
|
+
Entonces Verifico los textos del popup grande de newsletter
|
|
19
|
+
Entonces Comparo el campo origen
|
|
20
|
+
Entonces Comparo el campo destino
|
|
21
|
+
Cuando Edito el campo origen
|
|
22
|
+
Entonces Validar que el campo origen sea obligatorio
|
|
23
|
+
Cuando Completo el campo origen
|
|
24
|
+
Cuando Edito el campo destino
|
|
25
|
+
Entonces Validar que el campo destino sea obligatorio
|
|
26
|
+
Cuando Completo el campo destino
|
|
27
|
+
Cuando Hago click en guardar alerta
|
|
28
|
+
Cuando Selecciono Solo ida
|
|
29
|
+
Cuando Selecciono Ida y vuelta
|
|
30
|
+
Cuando Selecciono una fecha especifica
|
|
31
|
+
Cuando Selecciono una fecha aproximada
|
|
32
|
+
Cuando Completo el precio maximo por adulto ""
|
|
33
|
+
Cuando Hago click en guardar alerta
|
|
34
|
+
Entonces Validar que el campo precio maximo por adulto sea obligatorio
|
|
35
|
+
Entonces Validar que el campo email sea obligatorio
|
|
36
|
+
Cuando Completo el precio maximo por adulto "999"
|
|
37
|
+
Cuando Completo el email "testvuelos"
|
|
38
|
+
Cuando Hago click en guardar alerta
|
|
39
|
+
Entonces Validar que el campo email tenga un email valido
|
|
40
|
+
Cuando Completo el email "testvuelos@despegar.com"
|
|
41
|
+
Cuando Hago click en guardar alerta
|
|
42
|
+
Entonces Esperar que se muestre el mensaje de alerta
|
|
43
|
+
Y Validar que el mensaje sea correcto
|
|
44
|
+
Cuando Cierro el popup de alertas
|
|
45
|
+
Entonces Validar que se haya cerrado el popup de alertas
|
|
46
|
+
|
|
47
|
+
@cl
|
|
48
|
+
Ejemplos:
|
|
49
|
+
|pais|tipo|
|
|
50
|
+
|CL |roundtrip|
|
|
51
|
+
|
|
52
|
+
@newsletter
|
|
53
|
+
Esquema del escenario: Entrar a resultados y forzar el popup de newsletter chico y elijo alerta personalizada
|
|
54
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "nil"
|
|
55
|
+
Cuando Espero que termine de cargar
|
|
56
|
+
Entonces Verifico que traiga resultados
|
|
57
|
+
Entonces Fuerzo la cookie de newsletter
|
|
58
|
+
Y Fuerzo el abztesting de newsletter al "70"
|
|
59
|
+
Y Refresco la pagina
|
|
60
|
+
Cuando Espero que termine de cargar
|
|
61
|
+
Entonces Verifico que cargue el popup chico de newsletter
|
|
62
|
+
Y Verifico los textos del popup chico de newsletter
|
|
63
|
+
Y Elijo crear alerta personalizada
|
|
64
|
+
Entonces Verifico que cargue correctamente el popup de alertas
|
|
65
|
+
Entonces Comparo el campo origen
|
|
66
|
+
Entonces Comparo el campo destino
|
|
67
|
+
Cuando Edito el campo origen
|
|
68
|
+
Entonces Validar que el campo origen sea obligatorio
|
|
69
|
+
Cuando Completo el campo origen
|
|
70
|
+
Cuando Edito el campo destino
|
|
71
|
+
Entonces Validar que el campo destino sea obligatorio
|
|
72
|
+
Cuando Completo el campo destino
|
|
73
|
+
Cuando Hago click en guardar alerta
|
|
74
|
+
Cuando Selecciono Solo ida
|
|
75
|
+
Cuando Selecciono Ida y vuelta
|
|
76
|
+
Cuando Selecciono una fecha especifica
|
|
77
|
+
Cuando Selecciono una fecha aproximada
|
|
78
|
+
Cuando Completo el precio maximo por adulto ""
|
|
79
|
+
Cuando Hago click en guardar alerta
|
|
80
|
+
Entonces Validar que el campo precio maximo por adulto sea obligatorio
|
|
81
|
+
Entonces Validar que el campo email sea obligatorio
|
|
82
|
+
Cuando Completo el precio maximo por adulto "999"
|
|
83
|
+
Cuando Completo el email "testvuelos"
|
|
84
|
+
Cuando Hago click en guardar alerta
|
|
85
|
+
Entonces Validar que el campo email tenga un email valido
|
|
86
|
+
Cuando Completo el email "testvuelos@despegar.com"
|
|
87
|
+
Cuando Hago click en guardar alerta
|
|
88
|
+
Entonces Esperar que se muestre el mensaje de alerta
|
|
89
|
+
Y Validar que el mensaje sea correcto
|
|
90
|
+
Cuando Cierro el popup de alertas
|
|
91
|
+
Entonces Validar que se haya cerrado el popup de alertas
|
|
92
|
+
|
|
93
|
+
@cl
|
|
94
|
+
Ejemplos:
|
|
95
|
+
|pais|tipo|
|
|
96
|
+
|CL |roundtrip|
|
|
97
|
+
|
|
98
|
+
@newsletter
|
|
99
|
+
Esquema del escenario: Entrar a resultados y forzar el popup de newsletter chico y no elijo alerta personalizada
|
|
100
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "nil"
|
|
101
|
+
Cuando Espero que termine de cargar
|
|
102
|
+
Entonces Verifico que traiga resultados
|
|
103
|
+
Entonces Fuerzo la cookie de newsletter
|
|
104
|
+
Y Fuerzo el abztesting de newsletter al "70"
|
|
105
|
+
Y Refresco la pagina
|
|
106
|
+
Cuando Espero que termine de cargar
|
|
107
|
+
Entonces Verifico que cargue el popup chico de newsletter
|
|
108
|
+
Y Verifico los textos del popup chico de newsletter
|
|
109
|
+
Y No elijo crear alerta personalizada
|
|
110
|
+
Entonces Verifico que no cargue el popup de newsletter
|
|
111
|
+
|
|
112
|
+
@cl
|
|
113
|
+
Ejemplos:
|
|
114
|
+
|pais|tipo|
|
|
115
|
+
|CL |roundtrip|
|
|
116
|
+
|
|
117
|
+
@newsletter
|
|
118
|
+
Esquema del escenario: Entrar a resultados y no forzar el popup de newsletter
|
|
119
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "nil"
|
|
120
|
+
Cuando Espero que termine de cargar
|
|
121
|
+
Entonces Verifico que traiga resultados
|
|
122
|
+
Entonces Fuerzo la cookie de newsletter
|
|
123
|
+
Y Fuerzo el abztesting de newsletter al "15"
|
|
124
|
+
Y Refresco la pagina
|
|
125
|
+
Cuando Espero que termine de cargar
|
|
126
|
+
Entonces Verifico que no cargue el popup de newsletter
|
|
127
|
+
|
|
128
|
+
@cl
|
|
129
|
+
Ejemplos:
|
|
130
|
+
|pais|tipo|
|
|
131
|
+
|CL |roundtrip|
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@queryStringParameters
|
|
3
|
+
Característica: queryStringParameters
|
|
4
|
+
Los parametros del querystring se deben propagar
|
|
5
|
+
|
|
6
|
+
Esquema del escenario: Ingresar la URL con con los parametros de querystring
|
|
7
|
+
Entonces Verifico que se propaguen los parametros "<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,170 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.recommendation
|
|
4
|
+
Se verifica el comportamiento del popup de recomendacion por email
|
|
5
|
+
|
|
6
|
+
@recommendation
|
|
7
|
+
Esquema del escenario: Abrir el popup de recomendacion por email
|
|
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
|
+
Entonces Verifico que exista el icono de enviar recomendacion
|
|
12
|
+
Cuando Hago click en el icono de enviar recomendacion
|
|
13
|
+
Entonces Verifico que cargue el contenido del popup
|
|
14
|
+
Entonces Verifico que el asunto sea correcto "Recomendaci.{1,2}n de vuelo a"
|
|
15
|
+
Entonces Verifico que el comentario por default sea correcto "Encontr.{1,2} este vuelo de"
|
|
16
|
+
Cuando Hago click en el boton de enviar
|
|
17
|
+
Entonces Verifico que el nombre del remitente sea un campo obligatorio
|
|
18
|
+
Entonces Verifico que el mail del remitente sea un campo obligatorio
|
|
19
|
+
Entonces Verifico que el mail del destinatario sea un campo obligatorio
|
|
20
|
+
Cuando Completo el mail del remitente "testvuelos"
|
|
21
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
22
|
+
Cuando Completo el mail del destinatario "testvuelos"
|
|
23
|
+
Entonces Verifico que el mail del destinatario tenga un formato valido
|
|
24
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com, testvuelos@despegar.com"
|
|
25
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
26
|
+
Cuando Completo el nombre del remitente "Martin QA Diez"
|
|
27
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com"
|
|
28
|
+
Cuando Completo el mail del destinatario "testvuelos@despegar.com"
|
|
29
|
+
Cuando Hago click en el boton de enviar
|
|
30
|
+
Entonces Verifico que se haya enviado correctamente el email
|
|
31
|
+
Entonces Verifico que el texto de feedback este bien formado "Muchas gracias, Martin QA Diez. Su recomendaci.{1,2}n fue enviada a testvuelos@despegar.com."
|
|
32
|
+
Cuando Recorro el resto de los clusters
|
|
33
|
+
|
|
34
|
+
@ar
|
|
35
|
+
Ejemplos:
|
|
36
|
+
|pais|tipo|cabotage|
|
|
37
|
+
|AR |roundtrip|nil|
|
|
38
|
+
@co
|
|
39
|
+
Ejemplos:
|
|
40
|
+
|pais|tipo|cabotage|
|
|
41
|
+
|CO |roundtrip|nil|
|
|
42
|
+
|CO |oneway|nil|
|
|
43
|
+
|CO |roundtrip|true|
|
|
44
|
+
|CO |oneway|true|
|
|
45
|
+
@cl
|
|
46
|
+
Ejemplos:
|
|
47
|
+
|pais|tipo|cabotage|
|
|
48
|
+
|CL |roundtrip|nil|
|
|
49
|
+
|CL |oneway|nil|
|
|
50
|
+
|CL |roundtrip|true|
|
|
51
|
+
|CL |oneway|true|
|
|
52
|
+
@cr
|
|
53
|
+
Ejemplos:
|
|
54
|
+
|pais|tipo|cabotage|
|
|
55
|
+
|CR |roundtrip|nil|
|
|
56
|
+
|CR |oneway|nil|
|
|
57
|
+
|CR |roundtrip|true|
|
|
58
|
+
|CR |oneway|true|
|
|
59
|
+
@ec
|
|
60
|
+
Ejemplos:
|
|
61
|
+
|pais|tipo|cabotage|
|
|
62
|
+
|EC |roundtrip|nil|
|
|
63
|
+
|EC |oneway|nil|
|
|
64
|
+
|EC |roundtrip|true|
|
|
65
|
+
|EC |oneway|true|
|
|
66
|
+
@mx
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|cabotage|
|
|
69
|
+
|MX |roundtrip|nil|
|
|
70
|
+
|MX |oneway|nil|
|
|
71
|
+
|MX |roundtrip|true|
|
|
72
|
+
|MX |oneway|true|
|
|
73
|
+
@pa
|
|
74
|
+
Ejemplos:
|
|
75
|
+
|pais|tipo|cabotage|
|
|
76
|
+
|PA |roundtrip|nil|
|
|
77
|
+
|PA |oneway|nil|
|
|
78
|
+
|PA |roundtrip|true|
|
|
79
|
+
|PA |oneway|true|
|
|
80
|
+
@pe
|
|
81
|
+
Ejemplos:
|
|
82
|
+
|pais|tipo|cabotage|
|
|
83
|
+
|PE |roundtrip|nil|
|
|
84
|
+
|PE |oneway|nil|
|
|
85
|
+
|PE |roundtrip|true|
|
|
86
|
+
|PE |oneway|true|
|
|
87
|
+
@uy
|
|
88
|
+
Ejemplos:
|
|
89
|
+
|pais|tipo|cabotage|
|
|
90
|
+
|UY |roundtrip|nil|
|
|
91
|
+
|UY |oneway|nil|
|
|
92
|
+
|UY |roundtrip|true|
|
|
93
|
+
|UY |oneway|true|
|
|
94
|
+
@ve
|
|
95
|
+
Ejemplos:
|
|
96
|
+
|pais|tipo|cabotage|
|
|
97
|
+
|VE |roundtrip|nil|
|
|
98
|
+
|VE |oneway|nil|
|
|
99
|
+
|VE |roundtrip|true|
|
|
100
|
+
|VE |oneway|true|
|
|
101
|
+
|
|
102
|
+
@recommendation
|
|
103
|
+
Esquema del escenario: Abrir el popup de recomendacion por email en Brasil
|
|
104
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
|
105
|
+
Cuando Espero que termine de cargar
|
|
106
|
+
Entonces Verifico que traiga resultados
|
|
107
|
+
Cuando Hago click en el icono de enviar recomendacion
|
|
108
|
+
Entonces Verifico que cargue el contenido del popup
|
|
109
|
+
Entonces Verifico que el asunto sea correcto "Recomenda.{1,2}.{1,2}es de voo para"
|
|
110
|
+
Entonces Verifico que el comentario por default sea correcto "Encontrei este voo de"
|
|
111
|
+
Cuando Hago click en el boton de enviar
|
|
112
|
+
Entonces Verifico que el nombre del remitente sea un campo obligatorio
|
|
113
|
+
Entonces Verifico que el mail del remitente sea un campo obligatorio
|
|
114
|
+
Entonces Verifico que el mail del destinatario sea un campo obligatorio
|
|
115
|
+
Cuando Completo el mail del remitente "testvuelos"
|
|
116
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
117
|
+
Cuando Completo el mail del destinatario "testvuelos"
|
|
118
|
+
Entonces Verifico que el mail del destinatario tenga un formato valido
|
|
119
|
+
Cuando Completo el nombre del remitente "Martin QA Diez"
|
|
120
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com, testvuelos@despegar.com"
|
|
121
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
122
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com"
|
|
123
|
+
Cuando Completo el mail del destinatario "testvuelos@despegar.com"
|
|
124
|
+
Cuando Hago click en el boton de enviar
|
|
125
|
+
Entonces Verifico que se haya enviado correctamente el email
|
|
126
|
+
Entonces Verifico que el texto de feedback este bien formado "Obrigado, Martin QA Diez. Sua recomenda.{1,2}.{1,2}o foi enviada para o testvuelos@despegar.com."
|
|
127
|
+
|
|
128
|
+
@br
|
|
129
|
+
Ejemplos:
|
|
130
|
+
|pais|tipo|cabotage|
|
|
131
|
+
|BR |oneway|true|
|
|
132
|
+
|BR |roundtrip|true|
|
|
133
|
+
|BR |oneway|nil|
|
|
134
|
+
|BR |roundtrip|nil|
|
|
135
|
+
|
|
136
|
+
@recommendation
|
|
137
|
+
Esquema del escenario: Abrir el popup de recomendacion por email
|
|
138
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
|
139
|
+
Cuando Espero que termine de cargar
|
|
140
|
+
Entonces Verifico que traiga resultados
|
|
141
|
+
Entonces Verifico que exista el icono de enviar recomendacion
|
|
142
|
+
Cuando Hago click en el icono de enviar recomendacion
|
|
143
|
+
Entonces Verifico que cargue el contenido del popup
|
|
144
|
+
Entonces Verifico que el asunto sea correcto "My flight recommendation to"
|
|
145
|
+
Entonces Verifico que el comentario por default sea correcto "You can.{1,2}t miss this flight from"
|
|
146
|
+
Cuando Hago click en el boton de enviar
|
|
147
|
+
Entonces Verifico que el nombre del remitente sea un campo obligatorio
|
|
148
|
+
Entonces Verifico que el mail del remitente sea un campo obligatorio
|
|
149
|
+
Entonces Verifico que el mail del destinatario sea un campo obligatorio
|
|
150
|
+
Cuando Completo el mail del remitente "testvuelos"
|
|
151
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
152
|
+
Cuando Completo el mail del destinatario "testvuelos"
|
|
153
|
+
Entonces Verifico que el mail del destinatario tenga un formato valido
|
|
154
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com, testvuelos@despegar.com"
|
|
155
|
+
Entonces Verifico que el mail del remitente tenga un formato valido
|
|
156
|
+
Cuando Completo el nombre del remitente "Martin QA Diez"
|
|
157
|
+
Cuando Completo el mail del remitente "testvuelos@despegar.com"
|
|
158
|
+
Cuando Completo el mail del destinatario "testvuelos@despegar.com"
|
|
159
|
+
Cuando Hago click en el boton de enviar
|
|
160
|
+
Entonces Verifico que se haya enviado correctamente el email
|
|
161
|
+
Entonces Verifico que el texto de feedback este bien formado "Thank you, Martin QA Diez. Your recommendation was sent to testvuelos@despegar.com."
|
|
162
|
+
Cuando Recorro el resto de los clusters
|
|
163
|
+
|
|
164
|
+
@us
|
|
165
|
+
Ejemplos:
|
|
166
|
+
|pais|tipo|cabotage|
|
|
167
|
+
|US |roundtrip|nil|
|
|
168
|
+
|US |oneway|nil|
|
|
169
|
+
|US |roundtrip|true|
|
|
170
|
+
|US |oneway|true|
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.semaphore
|
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de resultados
|
|
5
|
+
|
|
6
|
+
@semaphore
|
|
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 si trajo resultados
|
|
12
|
+
Cuando Si el site es "AR|BR", Levanto los tag que deben mostrarse segun la ciudad buscada para una busqueda "<tipo>"
|
|
13
|
+
Entonces Si el site es "AR|BR", Verifico que se muestre en el codigo fuente
|
|
14
|
+
Y Verifico el primer tag de google en resultado de fgui
|
|
15
|
+
Y Verifico el segundo tag de google en resultado de fgui
|
|
16
|
+
Y Verifico el tag de groovinads
|
|
17
|
+
Y Verifico el logger en resultado de fgui
|
|
18
|
+
Y Verifico el tag de canonical
|
|
19
|
+
Y Verifico el tag de remarketing de facebook
|
|
20
|
+
Y Verifico que no se muestre la leyenda de mejor precio garantizado en resultados
|
|
21
|
+
Cuando Genero el respond de la busqueda
|
|
22
|
+
Y Verifico que las datos de la pagina sean consistente a la busqueda realizada
|
|
23
|
+
Cuando Elijo un itinerario y paso a checkout
|
|
24
|
+
Cuando Verifico que ingrese al checkout
|
|
25
|
+
Entonces Verifico que la pagina no rompa
|
|
26
|
+
|
|
27
|
+
@ar
|
|
28
|
+
@roundtrip
|
|
29
|
+
Ejemplos:
|
|
30
|
+
|pais|tipo|cabotage|
|
|
31
|
+
|AR |roundtrip|nil|
|
|
32
|
+
@ar
|
|
33
|
+
@oneway
|
|
34
|
+
Ejemplos:
|
|
35
|
+
|pais|tipo|cabotage|
|
|
36
|
+
|AR |oneway|true|
|
|
37
|
+
@ar
|
|
38
|
+
@multipledestinations
|
|
39
|
+
Ejemplos:
|
|
40
|
+
|pais|tipo|cabotage|
|
|
41
|
+
|AR |multipledestinations|nil|
|
|
42
|
+
@br
|
|
43
|
+
@roundtrip
|
|
44
|
+
Ejemplos:
|
|
45
|
+
|pais|tipo|cabotage|
|
|
46
|
+
|BR |roundtrip|nil|
|
|
47
|
+
@br
|
|
48
|
+
@oneway
|
|
49
|
+
Ejemplos:
|
|
50
|
+
|pais|tipo|cabotage|
|
|
51
|
+
|BR |oneway|nil|
|
|
52
|
+
@br
|
|
53
|
+
@multipledestinations
|
|
54
|
+
Ejemplos:
|
|
55
|
+
|pais|tipo|cabotage|
|
|
56
|
+
|BR |multipledestinations|nil|
|
|
57
|
+
@co
|
|
58
|
+
@roundtrip
|
|
59
|
+
Ejemplos:
|
|
60
|
+
|pais|tipo|cabotage|
|
|
61
|
+
|CO |roundtrip|nil|
|
|
62
|
+
@co
|
|
63
|
+
@oneway
|
|
64
|
+
Ejemplos:
|
|
65
|
+
|pais|tipo|cabotage|
|
|
66
|
+
|CO |oneway|nil|
|
|
67
|
+
@co
|
|
68
|
+
@multipledestinations
|
|
69
|
+
Ejemplos:
|
|
70
|
+
|pais|tipo|cabotage|
|
|
71
|
+
|CO |multipledestinations|nil|
|
|
72
|
+
@cl
|
|
73
|
+
@roundtrip
|
|
74
|
+
Ejemplos:
|
|
75
|
+
|pais|tipo|cabotage|
|
|
76
|
+
|CL |roundtrip|nil|
|
|
77
|
+
@cl
|
|
78
|
+
@oneway
|
|
79
|
+
Ejemplos:
|
|
80
|
+
|pais|tipo|cabotage|
|
|
81
|
+
|CL |oneway|nil|
|
|
82
|
+
@cl
|
|
83
|
+
@multipledestinations
|
|
84
|
+
Ejemplos:
|
|
85
|
+
|pais|tipo|cabotage|
|
|
86
|
+
|CL |multipledestinations|nil|
|
|
87
|
+
@cr
|
|
88
|
+
@roundtrip
|
|
89
|
+
Ejemplos:
|
|
90
|
+
|pais|tipo|cabotage|
|
|
91
|
+
|CR |roundtrip|nil|
|
|
92
|
+
@cr
|
|
93
|
+
@oneway
|
|
94
|
+
Ejemplos:
|
|
95
|
+
|pais|tipo|cabotage|
|
|
96
|
+
|CR |oneway|nil|
|
|
97
|
+
@cr
|
|
98
|
+
@multipledestinations
|
|
99
|
+
Ejemplos:
|
|
100
|
+
|pais|tipo|cabotage|
|
|
101
|
+
|CR |multipledestinations|nil|
|
|
102
|
+
@ec
|
|
103
|
+
@roundtrip
|
|
104
|
+
Ejemplos:
|
|
105
|
+
|pais|tipo|cabotage|
|
|
106
|
+
|EC |roundtrip|nil|
|
|
107
|
+
@ec
|
|
108
|
+
@oneway
|
|
109
|
+
Ejemplos:
|
|
110
|
+
|pais|tipo|cabotage|
|
|
111
|
+
|EC |oneway|nil|
|
|
112
|
+
@ec
|
|
113
|
+
@multipledestinations
|
|
114
|
+
Ejemplos:
|
|
115
|
+
|pais|tipo|cabotage|
|
|
116
|
+
|EC |multipledestinations|nil|
|
|
117
|
+
@mx
|
|
118
|
+
@roundtrip
|
|
119
|
+
Ejemplos:
|
|
120
|
+
|pais|tipo|cabotage|
|
|
121
|
+
|MX |roundtrip|nil|
|
|
122
|
+
@mx
|
|
123
|
+
@oneway
|
|
124
|
+
Ejemplos:
|
|
125
|
+
|pais|tipo|cabotage|
|
|
126
|
+
|MX |oneway|nil|
|
|
127
|
+
@mx
|
|
128
|
+
@multipledestinations
|
|
129
|
+
Ejemplos:
|
|
130
|
+
|pais|tipo|cabotage|
|
|
131
|
+
|MX |multipledestinations|nil|
|
|
132
|
+
@pa
|
|
133
|
+
@roundtrip
|
|
134
|
+
Ejemplos:
|
|
135
|
+
|pais|tipo|cabotage|
|
|
136
|
+
|PA |roundtrip|nil|
|
|
137
|
+
@pa
|
|
138
|
+
@oneway
|
|
139
|
+
Ejemplos:
|
|
140
|
+
|pais|tipo|cabotage|
|
|
141
|
+
|PA |oneway|nil|
|
|
142
|
+
@pa
|
|
143
|
+
@multipledestinations
|
|
144
|
+
Ejemplos:
|
|
145
|
+
|pais|tipo|cabotage|
|
|
146
|
+
|PA |multipledestinations|nil|
|
|
147
|
+
@pe
|
|
148
|
+
@roundtrip
|
|
149
|
+
Ejemplos:
|
|
150
|
+
|pais|tipo|cabotage|
|
|
151
|
+
|PE |roundtrip|nil|
|
|
152
|
+
@pe
|
|
153
|
+
@oneway
|
|
154
|
+
Ejemplos:
|
|
155
|
+
|pais|tipo|cabotage|
|
|
156
|
+
|PE |oneway|nil|
|
|
157
|
+
@pe
|
|
158
|
+
@multipledestinations
|
|
159
|
+
Ejemplos:
|
|
160
|
+
|pais|tipo|cabotage|
|
|
161
|
+
|PE |multipledestinations|nil|
|
|
162
|
+
@us
|
|
163
|
+
@roundtrip
|
|
164
|
+
Ejemplos:
|
|
165
|
+
|pais|tipo|cabotage|
|
|
166
|
+
|US |roundtrip|nil|
|
|
167
|
+
@us
|
|
168
|
+
@oneway
|
|
169
|
+
Ejemplos:
|
|
170
|
+
|pais|tipo|cabotage|
|
|
171
|
+
|US |oneway|nil|
|
|
172
|
+
@us
|
|
173
|
+
@multipledestinations
|
|
174
|
+
Ejemplos:
|
|
175
|
+
|pais|tipo|cabotage|
|
|
176
|
+
|US |multipledestinations|nil|
|
|
177
|
+
@uy
|
|
178
|
+
@roundtrip
|
|
179
|
+
Ejemplos:
|
|
180
|
+
|pais|tipo|cabotage|
|
|
181
|
+
|UY |roundtrip|nil|
|
|
182
|
+
@uy
|
|
183
|
+
@oneway
|
|
184
|
+
Ejemplos:
|
|
185
|
+
|pais|tipo|cabotage|
|
|
186
|
+
|UY |oneway|nil|
|
|
187
|
+
@uy
|
|
188
|
+
@multipledestinations
|
|
189
|
+
Ejemplos:
|
|
190
|
+
|pais|tipo|cabotage|
|
|
191
|
+
|UY |multipledestinations|nil|
|
|
192
|
+
@ve
|
|
193
|
+
@roundtrip
|
|
194
|
+
Ejemplos:
|
|
195
|
+
|pais|tipo|cabotage|
|
|
196
|
+
|VE |roundtrip|nil|
|
|
197
|
+
@ve
|
|
198
|
+
@oneway
|
|
199
|
+
Ejemplos:
|
|
200
|
+
|pais|tipo|cabotage|
|
|
201
|
+
|VE |oneway|nil|
|
|
202
|
+
@ve
|
|
203
|
+
@multipledestinations
|
|
204
|
+
Ejemplos:
|
|
205
|
+
|pais|tipo|cabotage|
|
|
206
|
+
|VE |multipledestinations|nil|
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@others
|
|
3
|
+
Característica: others.upgrade_bussines
|
|
4
|
+
Se verifica el comportamiento de la opcion de acceder a una clase mas alta a travez del banner
|
|
5
|
+
|
|
6
|
+
@upgrade_bussines
|
|
7
|
+
Esquema del escenario: Se elije la opcion de upgrade a travez del banner verificando que en la url que redirije los precios sean consistentes
|
|
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
|
+
Entonces Seteo las edades de los menores
|
|
12
|
+
Y busco resultados con la opcion de bussines
|
|
13
|
+
Cuando Espero que termine de cargar
|
|
14
|
+
Entonces Verifico que traiga resultados
|
|
15
|
+
Entonces Vuelvo a la pagina anterior
|
|
16
|
+
Cuando Espero que termine de cargar
|
|
17
|
+
Entonces Verifico que traiga resultados
|
|
18
|
+
Entonces Refresco la pagina
|
|
19
|
+
Cuando Espero que termine de cargar
|
|
20
|
+
Entonces Verifico que traiga resultados
|
|
21
|
+
Y Verifico que exista el banner de upgrade bussines
|
|
22
|
+
Y Verifico que el banner redirija a la url correcta
|
|
23
|
+
|
|
24
|
+
@ar
|
|
25
|
+
Ejemplos:
|
|
26
|
+
|pais|tipo|cabotage|
|
|
27
|
+
|AR |roundtrip|nil|
|
|
28
|
+
|AR |oneway|nil|
|
|
29
|
+
|AR |roundtrip|true|
|
|
30
|
+
|AR |oneway|true|
|
|
31
|
+
@co
|
|
32
|
+
Ejemplos:
|
|
33
|
+
|pais|tipo|cabotage|
|
|
34
|
+
|CO |roundtrip|nil|
|
|
35
|
+
|CO |oneway|nil|
|
|
36
|
+
|CO |roundtrip|true|
|
|
37
|
+
|CO |oneway|true|
|
|
38
|
+
@cl
|
|
39
|
+
Ejemplos:
|
|
40
|
+
|pais|tipo|cabotage|
|
|
41
|
+
|CL |roundtrip|nil|
|
|
42
|
+
|CL |oneway|nil|
|
|
43
|
+
|CL |roundtrip|true|
|
|
44
|
+
|CL |oneway|true|
|
|
45
|
+
@cr
|
|
46
|
+
Ejemplos:
|
|
47
|
+
|pais|tipo|cabotage|
|
|
48
|
+
|CR |roundtrip|nil|
|
|
49
|
+
|CR |oneway|nil|
|
|
50
|
+
|CR |roundtrip|true|
|
|
51
|
+
|CR |oneway|true|
|
|
52
|
+
@ec
|
|
53
|
+
Ejemplos:
|
|
54
|
+
|pais|tipo|cabotage|
|
|
55
|
+
|EC |roundtrip|nil|
|
|
56
|
+
|EC |oneway|nil|
|
|
57
|
+
|EC |roundtrip|true|
|
|
58
|
+
|EC |oneway|true|
|
|
59
|
+
@mx
|
|
60
|
+
Ejemplos:
|
|
61
|
+
|pais|tipo|cabotage|
|
|
62
|
+
|MX |roundtrip|nil|
|
|
63
|
+
|MX |oneway|nil|
|
|
64
|
+
|MX |roundtrip|true|
|
|
65
|
+
|MX |oneway|true|
|
|
66
|
+
@pa
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|cabotage|
|
|
69
|
+
|PA |roundtrip|nil|
|
|
70
|
+
|PA |oneway|nil|
|
|
71
|
+
|PA |roundtrip|true|
|
|
72
|
+
|PA |oneway|true|
|
|
73
|
+
@pe
|
|
74
|
+
Ejemplos:
|
|
75
|
+
|pais|tipo|cabotage|
|
|
76
|
+
|PE |roundtrip|nil|
|
|
77
|
+
|PE |oneway|nil|
|
|
78
|
+
|PE |roundtrip|true|
|
|
79
|
+
|PE |oneway|true|
|
|
80
|
+
@us
|
|
81
|
+
Ejemplos:
|
|
82
|
+
|pais|tipo|cabotage|
|
|
83
|
+
|US |roundtrip|nil|
|
|
84
|
+
|US |oneway|nil|
|
|
85
|
+
|US |roundtrip|true|
|
|
86
|
+
|US |oneway|true|
|
|
87
|
+
@uy
|
|
88
|
+
Ejemplos:
|
|
89
|
+
|pais|tipo|cabotage|
|
|
90
|
+
|UY |roundtrip|nil|
|
|
91
|
+
|UY |oneway|nil|
|
|
92
|
+
|UY |roundtrip|true|
|
|
93
|
+
|UY |oneway|true|
|
|
94
|
+
@ve
|
|
95
|
+
Ejemplos:
|
|
96
|
+
|pais|tipo|cabotage|
|
|
97
|
+
|VE |roundtrip|nil|
|
|
98
|
+
|VE |oneway|nil|
|
|
99
|
+
|VE |roundtrip|true|
|
|
100
|
+
|VE |oneway|true|
|