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.
Files changed (143) hide show
  1. checksums.yaml +15 -0
  2. data/Gemfile +3 -0
  3. data/features/data/home-offers-config.csv +883 -0
  4. data/features/data/host.yml +72 -0
  5. data/features/data/miles.yml +216 -0
  6. data/features/data/search.yml +27 -0
  7. data/features/data/sites.yml +39 -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/chat_steps.rb +43 -0
  11. data/features/step_definitions/checkout/checkout_steps.rb +144 -0
  12. data/features/step_definitions/checkout/cupones_steps.rb +26 -0
  13. data/features/step_definitions/checkout/error_messages.rb +251 -0
  14. data/features/step_definitions/checkout/seguros_steps.rb +78 -0
  15. data/features/step_definitions/checkout/thanks_steps.rb +75 -0
  16. data/features/step_definitions/content/contents_steps.rb +140 -0
  17. data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +73 -0
  18. data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +43 -0
  19. data/features/step_definitions/filter/filters_airlines.rb +38 -0
  20. data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
  21. data/features/step_definitions/filter/filters_price_steps.rb +87 -0
  22. data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
  23. data/features/step_definitions/filter/filters_time_steps.rb +143 -0
  24. data/features/step_definitions/filter/matrix_steps.rb +249 -0
  25. data/features/step_definitions/landing/landing_checkout_steps.rb +45 -0
  26. data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
  27. data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
  28. data/features/step_definitions/landing/landing_home_steps.rb +82 -0
  29. data/features/step_definitions/landing/landing_long_tail.rb +58 -0
  30. data/features/step_definitions/landing/landing_negative_steps.rb +127 -0
  31. data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
  32. data/features/step_definitions/landing/landing_steps.rb +325 -0
  33. data/features/step_definitions/orders/orders.rb +67 -0
  34. data/features/step_definitions/others/advancedgui_steps.rb +28 -0
  35. data/features/step_definitions/others/advancednogui_steps.rb +34 -0
  36. data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
  37. data/features/step_definitions/others/flights_tracker_steps.rb +73 -0
  38. data/features/step_definitions/others/generic_steps.rb +35 -0
  39. data/features/step_definitions/others/newsletter_steps.rb +50 -0
  40. data/features/step_definitions/others/one_day_search.rb +58 -0
  41. data/features/step_definitions/others/print_steps.rb +26 -0
  42. data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
  43. data/features/step_definitions/others/recommendation_steps.rb +80 -0
  44. data/features/step_definitions/others/render_steps.rb +70 -0
  45. data/features/step_definitions/others/tag_steps.rb +157 -0
  46. data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
  47. data/features/step_definitions/results/load_steps.rb +69 -0
  48. data/features/step_definitions/results/results_steps.rb +21 -0
  49. data/features/step_definitions/results/search_steps.rb +82 -0
  50. data/features/step_definitions/search/alerts_steps.rb +132 -0
  51. data/features/step_definitions/search/basefare_steps.rb +64 -0
  52. data/features/step_definitions/search/bestprices_steps.rb +70 -0
  53. data/features/step_definitions/search/cross_sell_row_hoteles.rb +78 -0
  54. data/features/step_definitions/search/cross_sell_steps.rb +15 -0
  55. data/features/step_definitions/search/delays_steps.rb +67 -0
  56. data/features/step_definitions/search/details_steps.rb +9 -0
  57. data/features/step_definitions/search/ecoflights_steps.rb +9 -0
  58. data/features/step_definitions/search/fenix_steps.rb +119 -0
  59. data/features/step_definitions/search/flight_gui_steps.rb +312 -0
  60. data/features/step_definitions/search/miles_step.rb +13 -0
  61. data/features/step_definitions/search/pagination_steps.rb +41 -0
  62. data/features/step_definitions/search/reviews_step.rb +56 -0
  63. data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
  64. data/features/step_definitions/search/wish_list_steps.rb +123 -0
  65. data/features/support/env.rb +61 -0
  66. data/features/support/lib/clusters/data/datos_new.rb +33 -0
  67. data/features/support/lib/clusters/details/details_cluster.rb +30 -0
  68. data/features/support/lib/clusters/results/landing_cluster.rb +29 -0
  69. data/features/support/lib/clusters/results/render_cluster.rb +43 -0
  70. data/features/support/lib/clusters/results_cluster.rb +140 -0
  71. data/features/support/lib/clusters.rb +5 -0
  72. data/features/support/lib/helpers/browser.rb +212 -0
  73. data/features/support/lib/helpers/checkout.rb +31 -0
  74. data/features/support/lib/helpers/clusters.rb +234 -0
  75. data/features/support/lib/helpers/landing.rb +117 -0
  76. data/features/support/lib/helpers/render.rb +135 -0
  77. data/features/support/lib/helpers.rb +5 -0
  78. data/features/support/lib/price.rb +66 -0
  79. data/features/support/lib/services/fenix.rb +14 -0
  80. data/features/support/lib/services/landing.rb +18 -0
  81. data/features/support/lib/services/results.rb +62 -0
  82. data/features/support/lib/services.rb +4 -0
  83. data/features/support/matchers.rb +120 -0
  84. data/features/support/redefinitions.rb +42 -0
  85. data/features/tests/checkout/agency.feature +33 -0
  86. data/features/tests/checkout/button_cac.feature +52 -0
  87. data/features/tests/checkout/chat.feature +20 -0
  88. data/features/tests/checkout/cupones.feature +54 -0
  89. data/features/tests/checkout/error_messages.feature +64 -0
  90. data/features/tests/checkout/integration.feature +215 -0
  91. data/features/tests/checkout/low_cost.feature +55 -0
  92. data/features/tests/checkout/seguros.feature +37 -0
  93. data/features/tests/contents/costs.feature +29 -0
  94. data/features/tests/contents/rules.feature +58 -0
  95. data/features/tests/contents/webcheckin.feature +26 -0
  96. data/features/tests/desambiguation/airports.feature +89 -0
  97. data/features/tests/desambiguation/city.feature +86 -0
  98. data/features/tests/filters/filters.feature +160 -0
  99. data/features/tests/fixes/advancedgui.feature +171 -0
  100. data/features/tests/fixes/advancednogui.feature +60 -0
  101. data/features/tests/fixes/book_no_gui.feature +21 -0
  102. data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
  103. data/features/tests/fixes/facebook.feature +31 -0
  104. data/features/tests/fixes/landing_home_alerts.feature +82 -0
  105. data/features/tests/fixes/matrix_stops.feature +104 -0
  106. data/features/tests/fixes/one_day_search.feature +63 -0
  107. data/features/tests/fixes/print.feature +87 -0
  108. data/features/tests/fixes/searches_no_gui.feature +85 -0
  109. data/features/tests/landing/landing_alerts.feature +93 -0
  110. data/features/tests/landing/landing_checkout.feature +286 -0
  111. data/features/tests/landing/landing_filters.feature +176 -0
  112. data/features/tests/landing/landing_home.feature +68 -0
  113. data/features/tests/landing/landing_integration.feature +153 -0
  114. data/features/tests/landing/landing_long_tail.feature +162 -0
  115. data/features/tests/landing/landing_matrix.feature +156 -0
  116. data/features/tests/landing/landing_negative.feature +157 -0
  117. data/features/tests/landing/landing_orders.feature +107 -0
  118. data/features/tests/landing/landing_pagination.feature +142 -0
  119. data/features/tests/landing/landing_passenger_review.feature +139 -0
  120. data/features/tests/landing/landing_positive.feature +155 -0
  121. data/features/tests/landing/landing_reviews.feature +139 -0
  122. data/features/tests/landing/landing_tags.feature +148 -0
  123. data/features/tests/matrix/matrix_airlines.feature +104 -0
  124. data/features/tests/matrix/matrix_fare_chart.feature +24 -0
  125. data/features/tests/matrix/matrix_price.feature +35 -0
  126. data/features/tests/others/alerts.feature +89 -0
  127. data/features/tests/others/anticipatedsearch.feature +82 -0
  128. data/features/tests/others/flights_tracker.feature +94 -0
  129. data/features/tests/others/newsletter.feature +131 -0
  130. data/features/tests/others/querystringparameters.feature +82 -0
  131. data/features/tests/others/recommendation.feature +170 -0
  132. data/features/tests/others/semaphore.feature +206 -0
  133. data/features/tests/others/upgrade_bussines.feature +100 -0
  134. data/features/tests/search/basefare.feature +88 -0
  135. data/features/tests/search/itineraries.feature +85 -0
  136. data/features/tests/search/orders.feature +100 -0
  137. data/features/tests/search/pagination.feature +70 -0
  138. data/features/tests/search/reviews.feature +84 -0
  139. data/features/tests/search/searches.feature +197 -0
  140. data/features/tests/search/wish_list.feature +102 -0
  141. data/flights_gui_henry_tests.gemspec +32 -0
  142. data/henry-context.yml +14733 -0
  143. metadata +324 -0
@@ -0,0 +1,63 @@
1
+ #language: es
2
+ #@others
3
+ Característica: others.one_day_search
4
+ Busqueda a un dia de diferencia para verificar si se puede comprar o no
5
+
6
+ #@one_day_search
7
+ Esquema del escenario: Se realiza una busqueda cada 30 minutos para verificar cuando empieza a no permitir la compra
8
+ Cuando genero los datos para realizar una busqueda en "<pais>"
9
+ Cuando ingreso a la home de "<pais>"
10
+ Entonces realizo la busqueda para mañana
11
+ Y Si esta habilitado, Espero salir de home
12
+ Cuando Si esta habilitado, Espero que termine de cargar
13
+ Y Si esta habilitado, Verifico si se puede comprar o no
14
+ Y guardo los resultados en un archivo
15
+
16
+ @ar
17
+ Ejemplos:
18
+ |pais|
19
+ |AR|
20
+ @br
21
+ Ejemplos:
22
+ |pais|
23
+ |BR|
24
+ @mx
25
+ Ejemplos:
26
+ |pais|
27
+ |MX|
28
+ @ve
29
+ Ejemplos:
30
+ |pais|
31
+ |VE|
32
+ @co
33
+ Ejemplos:
34
+ |pais|
35
+ |CO|
36
+ @ec
37
+ Ejemplos:
38
+ |pais|
39
+ |EC|
40
+ @pe
41
+ Ejemplos:
42
+ |pais|
43
+ |PE|
44
+ @pa
45
+ Ejemplos:
46
+ |pais|
47
+ |PA|
48
+ @cr
49
+ Ejemplos:
50
+ |pais|
51
+ |CR|
52
+ @us
53
+ Ejemplos:
54
+ |pais|
55
+ |US|
56
+ @uy
57
+ Ejemplos:
58
+ |pais|
59
+ |UY|
60
+ @cl
61
+ Ejemplos:
62
+ |pais|
63
+ |CL|
@@ -0,0 +1,87 @@
1
+ #language: es
2
+ #@others
3
+ Característica: others.print
4
+ IF000*
5
+
6
+ #@print
7
+ Esquema del escenario: Se ingresa a resultados, se elige un ticket para imprimir
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 elijo un ticket "<tipo>"
12
+ Y verifico que exista el icono de impresion
13
+ Cuando abro el popup de impresion
14
+ Entonces verifico que los datos sean correctos
15
+ Y envio a imprimir
16
+
17
+ @ar
18
+ Ejemplos:
19
+ |pais|tipo|cabotage|
20
+ |AR |roundtrip|true|
21
+ |AR |multipledestinations|true|
22
+ |AR |oneway|nil|
23
+ @br
24
+ Ejemplos:
25
+ |pais|tipo|cabotage|
26
+ |BR |oneway|true|
27
+ |BR |roundtrip|nil|
28
+ @co
29
+ Ejemplos:
30
+ |pais|tipo|cabotage|
31
+ |CO |roundtrip|true|
32
+ |CO |oneway|nil|
33
+ |CO |multipledestinations|nil|
34
+ @mx
35
+ Ejemplos:
36
+ |pais|tipo|cabotage|
37
+ |MX |roundtrip|true|
38
+ |MX |oneway|nil|
39
+ |MX |multipledestinations|nil|
40
+ @ve
41
+ Ejemplos:
42
+ |pais|tipo|cabotage|
43
+ |VE |roundtrip|true|
44
+ |VE |oneway|true|
45
+ |VE |multipledestinations|true|
46
+ @cl
47
+ Ejemplos:
48
+ |pais|tipo|cabotage|
49
+ |CL |roundtrip|nil|
50
+ |CL |oneway|nil|
51
+ |CL |multipledestinations|nil|
52
+ @cr
53
+ Ejemplos:
54
+ |pais|tipo|cabotage|
55
+ |CR |roundtrip|true|
56
+ |CR |oneway|true|
57
+ |CR |multipledestinations|nil|
58
+ @ec
59
+ Ejemplos:
60
+ |pais|tipo|cabotage|
61
+ |EC |multipledestinations|true|
62
+ |EC |roundtrip|nil|
63
+ |EC |oneway|nil|
64
+ @pa
65
+ Ejemplos:
66
+ |pais|tipo|cabotage|
67
+ |PA |oneway|true|
68
+ |PA |multipledestinations|true|
69
+ |PA |roundtrip|nil|
70
+ @pe
71
+ Ejemplos:
72
+ |pais|tipo|cabotage|
73
+ |PE |roundtrip|true|
74
+ |PE |oneway|true|
75
+ |PE |multipledestinations|nil|
76
+ @us
77
+ Ejemplos:
78
+ |pais|tipo|cabotage|
79
+ |US |roundtrip|true|
80
+ |US |oneway|true|
81
+ |US |multipledestinations|nil|
82
+ @uy
83
+ Ejemplos:
84
+ |pais|tipo|cabotage|
85
+ |UY |multipledestinations|true|
86
+ |UY |roundtrip|nil|
87
+ |UY |oneway|nil|
@@ -0,0 +1,85 @@
1
+ #language: es
2
+ #@others
3
+ Característica: others.no_gui
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ #@no_gui
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>" sin gui
9
+ Entonces Verifico que el pedido responda "200"
10
+ Y Verifico que las datos de la pagina sean consistente a la busqueda realizada
11
+ Cuando Llamo al servicio de resultados
12
+ Entonces Verifico que los datos de cada cluster sean consistente a la busqueda realizada
13
+ Cuando Elijo un itinerario del servicio y paso a checkout
14
+ Entonces Verifico que el pedido alla ingresado correctamente
15
+
16
+ @ar
17
+ Ejemplos:
18
+ |pais|tipo|cabotage|
19
+ |AR |roundtrip|nil|
20
+ |AR |oneway|nil|
21
+ |AR |multipledestinations|nil|
22
+ @br
23
+ Ejemplos:
24
+ |pais|tipo|cabotage|
25
+ |BR |roundtrip|nil|
26
+ |BR |oneway|nil|
27
+ @co
28
+ Ejemplos:
29
+ |pais|tipo|cabotage|
30
+ |CO |roundtrip|nil|
31
+ |CO |oneway|nil|
32
+ @cl
33
+ Ejemplos:
34
+ |pais|tipo|cabotage|
35
+ |CL |roundtrip|nil|
36
+ |CL |oneway|nil|
37
+ |CL |multipledestinations|nil|
38
+ @cr
39
+ Ejemplos:
40
+ |pais|tipo|cabotage|
41
+ |CR |roundtrip|nil|
42
+ |CR |oneway|nil|
43
+ |CR |multipledestinations|nil|
44
+ @ec
45
+ Ejemplos:
46
+ |pais|tipo|cabotage|
47
+ |EC |roundtrip|nil|
48
+ |EC |oneway|nil|
49
+ |EC |multipledestinations|nil|
50
+ @mx
51
+ Ejemplos:
52
+ |pais|tipo|cabotage|
53
+ |MX |roundtrip|nil|
54
+ |MX |oneway|nil|
55
+ |MX |multipledestinations|nil|
56
+ @pa
57
+ Ejemplos:
58
+ |pais|tipo|cabotage|
59
+ |PA |roundtrip|nil|
60
+ |PA |oneway|nil|
61
+ |PA |multipledestinations|nil|
62
+ @pe
63
+ Ejemplos:
64
+ |pais|tipo|cabotage|
65
+ |PE |roundtrip|nil|
66
+ |PE |oneway|nil|
67
+ |PE |multipledestinations|nil|
68
+ @us
69
+ Ejemplos:
70
+ |pais|tipo|cabotage|
71
+ |US |roundtrip|nil|
72
+ |US |oneway|nil|
73
+ |US |multipledestinations|nil|
74
+ @uy
75
+ Ejemplos:
76
+ |pais|tipo|cabotage|
77
+ |UY |roundtrip|nil|
78
+ |UY |oneway|nil|
79
+ |UY |multipledestinations|nil|
80
+ @ve
81
+ Ejemplos:
82
+ |pais|tipo|cabotage|
83
+ |VE |roundtrip|nil|
84
+ |VE |oneway|nil|
85
+ |VE |multipledestinations|nil|
@@ -0,0 +1,93 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.alerts
4
+ Se verifica que el tag de google se muestre correctamente en la pagina de resultados de landing
5
+
6
+ @alerts
7
+ Esquema del escenario: Ingresar a resultados de landing, buscar el script en el fuente, Verificar que los datos sean correctos.
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 Ingreso a resultados de landing para la ciudad "BUE|RIO|MEX|NYC|LIM|CCS|BOG|MVD|MIA|UIO|SAO|SCL|COR"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Cuando Seteo las ciudades de la busqueda de resultados de landing
15
+ Entonces Verifico que exista el panel de alertas
16
+ Cuando Abro el popup de alertas
17
+ Entonces Verifico que cargue correctamente el popup de alertas
18
+ Entonces Comparo el campo origen
19
+ Entonces Comparo el campo destino
20
+ Cuando Edito el campo origen
21
+ Entonces Validar que el campo origen sea obligatorio
22
+ Cuando Completo el campo origen
23
+ Cuando Edito el campo destino
24
+ Entonces Validar que el campo destino sea obligatorio
25
+ Cuando Completo el campo destino
26
+ Cuando Hago click en guardar alerta
27
+ Cuando Selecciono Solo ida
28
+ Cuando Selecciono Ida y vuelta
29
+ Cuando Selecciono una fecha especifica
30
+ Cuando Selecciono una fecha aproximada
31
+ Cuando Completo el precio maximo por adulto ""
32
+ Cuando Hago click en guardar alerta
33
+ Entonces Validar que el campo precio maximo por adulto sea obligatorio
34
+ Entonces Validar que el campo email sea obligatorio
35
+ Cuando Completo el precio maximo por adulto "999"
36
+ Cuando Completo el email "testvuelos"
37
+ Cuando Hago click en guardar alerta
38
+ Entonces Validar que el campo email tenga un email valido
39
+ Cuando Completo el email "testvuelos@despegar.com"
40
+ Cuando Hago click en guardar alerta
41
+ Entonces Esperar que se muestre el mensaje de alerta
42
+ Y Validar que el mensaje sea correcto
43
+ Cuando Cierro el popup de alertas
44
+ Entonces Validar que se haya cerrado el popup de alertas
45
+
46
+ @ar
47
+ Ejemplos:
48
+ |pais|
49
+ |AR |
50
+ @br
51
+ Ejemplos:
52
+ |pais|
53
+ |BR |
54
+ @co
55
+ Ejemplos:
56
+ |pais|
57
+ |CO |
58
+ @cl
59
+ Ejemplos:
60
+ |pais|
61
+ |CL |
62
+ @cr
63
+ Ejemplos:
64
+ |pais|
65
+ |CR |
66
+ @ec
67
+ Ejemplos:
68
+ |pais|
69
+ |EC |
70
+ @mx
71
+ Ejemplos:
72
+ |pais|
73
+ |MX |
74
+ @pa
75
+ Ejemplos:
76
+ |pais|
77
+ |PA |
78
+ @pe
79
+ Ejemplos:
80
+ |pais|
81
+ |PE |
82
+ @us
83
+ Ejemplos:
84
+ |pais|
85
+ |US |
86
+ @uy
87
+ Ejemplos:
88
+ |pais|
89
+ |UY |
90
+ @ve
91
+ Ejemplos:
92
+ |pais|
93
+ |VE |
@@ -0,0 +1,286 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.checkout
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @checkout
7
+ Esquema del escenario: Ingresar a la home de landing
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 Levanto los datos de clusters
19
+ Y Verifico que se cree la cookie landingTestPrice con mas "9" por ciento
20
+ Y recargo la pagina
21
+ Y Seteo AbzTesting redirect al "85"
22
+ Y recargo la pagina
23
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
24
+ Cuando Verifico que ingrese al checkout
25
+
26
+ @ar
27
+ @roundtrip
28
+ Ejemplos:
29
+ |pais|tipo|
30
+ |AR |roundtrip|
31
+ @br
32
+ @roundtrip
33
+ Ejemplos:
34
+ |pais|tipo|
35
+ |BR |roundtrip|
36
+ @co
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |CO |roundtrip|
41
+ @cl
42
+ @roundtrip
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |CL |roundtrip|
46
+ @cr
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |CR |roundtrip|
51
+ @ec
52
+ @roundtrip
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |EC |roundtrip|
56
+ @pa
57
+ @roundtrip
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |PA |roundtrip|
61
+ @pe
62
+ @roundtrip
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |PE |roundtrip|
66
+ @us
67
+ @roundtrip
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |US |roundtrip|
71
+ @uy
72
+ @roundtrip
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |UY |roundtrip|
76
+ @ve
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |VE |roundtrip|
81
+
82
+ @checkout
83
+ Esquema del escenario: Ingresar a la home de landing
84
+ Cuando Ingreso a la home de landing de "<pais>"
85
+ Entonces Verifico que la pagina no rompa
86
+ Cuando Espero que termine de cargar la home de landing
87
+ Cuando Elijo un link para pasar a los resultados de landing
88
+ Cuando Ingreso a resultados de landing
89
+ Entonces Verifico que la pagina no rompa
90
+ Entonces Verifico que traiga resultados de landings
91
+ Cuando Elijo el tipo de vuelo "<tipo>"
92
+ Entonces Verifico que la pagina no rompa
93
+ Entonces Verifico que traiga resultados de landings
94
+ Entonces Levanto los datos de clusters
95
+ Y Verifico que se cree la cookie landingTestPrice con menos "5" por ciento
96
+ Y recargo la pagina
97
+ Y Seteo AbzTesting redirect al "85"
98
+ Y recargo la pagina
99
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
100
+ Cuando Espero que termine de cargar
101
+ Entonces Verifico que sea la pagina de resultados correcta
102
+ Y Verifico que traiga resultados
103
+
104
+ @ar
105
+ @roundtrip
106
+ Ejemplos:
107
+ |pais|tipo|
108
+ |AR |roundtrip|
109
+ @br
110
+ @roundtrip
111
+ Ejemplos:
112
+ |pais|tipo|
113
+ |BR |roundtrip|
114
+
115
+ @checkout
116
+ Esquema del escenario: Ingresar a la home de landing
117
+ Cuando Ingreso a la home de landing de "<pais>"
118
+ Entonces Verifico que la pagina no rompa
119
+ Cuando Espero que termine de cargar la home de landing
120
+ Cuando Elijo un link para pasar a los resultados de landing
121
+ Cuando Ingreso a resultados de landing
122
+ Entonces Verifico que la pagina no rompa
123
+ Entonces Verifico que traiga resultados de landings
124
+ Cuando Elijo el tipo de vuelo "<tipo>"
125
+ Entonces Verifico que la pagina no rompa
126
+ Entonces Verifico que traiga resultados de landings
127
+ Entonces Levanto los datos de clusters
128
+ Y Verifico que se cree la cookie landingTestPrice con mas "0" por ciento
129
+ Y recargo la pagina
130
+ Y Seteo AbzTesting redirect al "85"
131
+ Y recargo la pagina
132
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
133
+ Cuando Verifico que ingrese al checkout
134
+
135
+ @ar
136
+ @roundtrip
137
+ Ejemplos:
138
+ |pais|tipo|
139
+ |AR |roundtrip|
140
+ @br
141
+ @roundtrip
142
+ Ejemplos:
143
+ |pais|tipo|
144
+ |BR |roundtrip|
145
+ @co
146
+ @roundtrip
147
+ Ejemplos:
148
+ |pais|tipo|
149
+ |CO |roundtrip|
150
+ @cl
151
+ @roundtrip
152
+ Ejemplos:
153
+ |pais|tipo|
154
+ |CL |roundtrip|
155
+ @cr
156
+ @roundtrip
157
+ Ejemplos:
158
+ |pais|tipo|
159
+ |CR |roundtrip|
160
+ @ec
161
+ @roundtrip
162
+ Ejemplos:
163
+ |pais|tipo|
164
+ |EC |roundtrip|
165
+ @pa
166
+ @roundtrip
167
+ Ejemplos:
168
+ |pais|tipo|
169
+ |PA |roundtrip|
170
+ @pe
171
+ @roundtrip
172
+ Ejemplos:
173
+ |pais|tipo|
174
+ |PE |roundtrip|
175
+ @us
176
+ @roundtrip
177
+ Ejemplos:
178
+ |pais|tipo|
179
+ |US |roundtrip|
180
+ @uy
181
+ @roundtrip
182
+ Ejemplos:
183
+ |pais|tipo|
184
+ |UY |roundtrip|
185
+ @ve
186
+ @roundtrip
187
+ Ejemplos:
188
+ |pais|tipo|
189
+ |VE |roundtrip|
190
+
191
+ @checkout
192
+ Esquema del escenario: Ingresar a la home de landing
193
+ Cuando Ingreso a la home de landing de "<pais>"
194
+ Entonces Verifico que la pagina no rompa
195
+ Cuando Espero que termine de cargar la home de landing
196
+ Cuando Elijo un link para pasar a los resultados de landing
197
+ Cuando Ingreso a resultados de landing
198
+ Entonces Verifico que la pagina no rompa
199
+ Entonces Verifico que traiga resultados de landings
200
+ Cuando Elijo el tipo de vuelo "<tipo>"
201
+ Entonces Verifico que la pagina no rompa
202
+ Entonces Verifico que traiga resultados de landings
203
+ Entonces Levanto los datos de clusters
204
+ Y Verifico que se cree la cookie landingTestPrice con mas "1" por ciento
205
+ Y recargo la pagina
206
+ Y Seteo AbzTesting redirect al "85"
207
+ Y recargo la pagina
208
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
209
+ Cuando Verifico que ingrese al checkout
210
+
211
+ @ar
212
+ @roundtrip
213
+ Ejemplos:
214
+ |pais|tipo|
215
+ |AR |roundtrip|
216
+ @br
217
+ @roundtrip
218
+ Ejemplos:
219
+ |pais|tipo|
220
+ |BR |roundtrip|
221
+
222
+ @checkout
223
+ Esquema del escenario: Ingresar a la home de landing
224
+ Cuando Ingreso a la home de landing de "<pais>"
225
+ Entonces Verifico que la pagina no rompa
226
+ Cuando Espero que termine de cargar la home de landing
227
+ Cuando Elijo un link para pasar a los resultados de landing
228
+ Cuando Ingreso a resultados de landing
229
+ Entonces Verifico que la pagina no rompa
230
+ Entonces Verifico que traiga resultados de landings
231
+ Cuando Elijo el tipo de vuelo "<tipo>"
232
+ Entonces Verifico que la pagina no rompa
233
+ Entonces Verifico que traiga resultados de landings
234
+ Entonces Levanto los datos de clusters
235
+ Y Verifico que se cree la cookie landingTestPrice con menos "5" por ciento
236
+ Y recargo la pagina
237
+ Y Seteo AbzTesting redirect al "85"
238
+ Y recargo la pagina
239
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
240
+ Cuando Verifico que ingrese al checkout
241
+
242
+ @co
243
+ @roundtrip
244
+ Ejemplos:
245
+ |pais|tipo|
246
+ |CO |roundtrip|
247
+ @cl
248
+ @roundtrip
249
+ Ejemplos:
250
+ |pais|tipo|
251
+ |CL |roundtrip|
252
+ @cr
253
+ @roundtrip
254
+ Ejemplos:
255
+ |pais|tipo|
256
+ |CR |roundtrip|
257
+ @ec
258
+ @roundtrip
259
+ Ejemplos:
260
+ |pais|tipo|
261
+ |EC |roundtrip|
262
+ @pa
263
+ @roundtrip
264
+ Ejemplos:
265
+ |pais|tipo|
266
+ |PA |roundtrip|
267
+ @pe
268
+ @roundtrip
269
+ Ejemplos:
270
+ |pais|tipo|
271
+ |PE |roundtrip|
272
+ @us
273
+ @roundtrip
274
+ Ejemplos:
275
+ |pais|tipo|
276
+ |US |roundtrip|
277
+ @uy
278
+ @roundtrip
279
+ Ejemplos:
280
+ |pais|tipo|
281
+ |UY |roundtrip|
282
+ @ve
283
+ @roundtrip
284
+ Ejemplos:
285
+ |pais|tipo|
286
+ |VE |roundtrip|