flights_gui_henry_tests_ds 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/Gemfile +3 -0
  2. data/features/data/home-offers-config.csv +883 -0
  3. data/features/data/host.yml +78 -0
  4. data/features/data/miles.yml +216 -0
  5. data/features/data/search.yml +27 -0
  6. data/features/data/sites.yml +49 -0
  7. data/features/data/sites.yml.orig +54 -0
  8. data/features/data/tag_microsoft.yml +68 -0
  9. data/features/step_definitions/checkout/agencia_steps.rb +6 -0
  10. data/features/step_definitions/checkout/cash_payment_steps.rb +70 -0
  11. data/features/step_definitions/checkout/chat_steps.rb +57 -0
  12. data/features/step_definitions/checkout/checkout_steps.rb +265 -0
  13. data/features/step_definitions/checkout/cupones_steps.rb +36 -0
  14. data/features/step_definitions/checkout/error_messages.rb +291 -0
  15. data/features/step_definitions/checkout/fast_checkout.rb +55 -0
  16. data/features/step_definitions/checkout/price_jump_steps.rb +70 -0
  17. data/features/step_definitions/checkout/seguros_steps.rb +79 -0
  18. data/features/step_definitions/checkout/thanks_steps.rb +81 -0
  19. data/features/step_definitions/content/contents_steps.rb +140 -0
  20. data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +82 -0
  21. data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +53 -0
  22. data/features/step_definitions/filter/filters_airlines.rb +37 -0
  23. data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
  24. data/features/step_definitions/filter/filters_price_steps.rb +91 -0
  25. data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
  26. data/features/step_definitions/filter/filters_time_steps.rb +146 -0
  27. data/features/step_definitions/filter/matrix_steps.rb +276 -0
  28. data/features/step_definitions/landing/landing_checkout_steps.rb +49 -0
  29. data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
  30. data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
  31. data/features/step_definitions/landing/landing_home_steps.rb +82 -0
  32. data/features/step_definitions/landing/landing_long_tail.rb +58 -0
  33. data/features/step_definitions/landing/landing_negative_steps.rb +128 -0
  34. data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
  35. data/features/step_definitions/landing/landing_steps.rb +348 -0
  36. data/features/step_definitions/orders/orders.rb +83 -0
  37. data/features/step_definitions/others/advancedgui_steps.rb +28 -0
  38. data/features/step_definitions/others/advancednogui_steps.rb +34 -0
  39. data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
  40. data/features/step_definitions/others/cookies_steps.rb +40 -0
  41. data/features/step_definitions/others/flights_tracker_steps.rb +74 -0
  42. data/features/step_definitions/others/generic_steps.rb +33 -0
  43. data/features/step_definitions/others/newsletter_steps.rb +29 -0
  44. data/features/step_definitions/others/one_day_search.rb +58 -0
  45. data/features/step_definitions/others/print_steps.rb +26 -0
  46. data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
  47. data/features/step_definitions/others/recommendation_steps.rb +78 -0
  48. data/features/step_definitions/others/render_steps.rb +70 -0
  49. data/features/step_definitions/others/tag_steps.rb +164 -0
  50. data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
  51. data/features/step_definitions/results/devtools_steps.rb +10 -0
  52. data/features/step_definitions/results/itineraries_steps.rb +43 -0
  53. data/features/step_definitions/results/load_steps.rb +73 -0
  54. data/features/step_definitions/results/results_steps.rb +79 -0
  55. data/features/step_definitions/results/search_steps.rb +115 -0
  56. data/features/step_definitions/search/alerts_steps.rb +132 -0
  57. data/features/step_definitions/search/basefare_steps.rb +88 -0
  58. data/features/step_definitions/search/bestprices_steps.rb +70 -0
  59. data/features/step_definitions/search/cross_sell_row_hoteles.rb +52 -0
  60. data/features/step_definitions/search/cross_sell_steps.rb +15 -0
  61. data/features/step_definitions/search/delays_steps.rb +67 -0
  62. data/features/step_definitions/search/details_steps.rb +9 -0
  63. data/features/step_definitions/search/ecoflights_steps.rb +9 -0
  64. data/features/step_definitions/search/errors_steps.rb +24 -0
  65. data/features/step_definitions/search/fenix_steps.rb +99 -0
  66. data/features/step_definitions/search/flight_gui_steps.rb +376 -0
  67. data/features/step_definitions/search/miles_step.rb +13 -0
  68. data/features/step_definitions/search/pagination_steps.rb +29 -0
  69. data/features/step_definitions/search/reviews_step.rb +58 -0
  70. data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
  71. data/features/step_definitions/search/wish_list_steps.rb +128 -0
  72. data/features/support/env.rb +86 -0
  73. data/features/support/lib/clusters.rb +6 -0
  74. data/features/support/lib/clusters/checkout_cluster.rb +111 -0
  75. data/features/support/lib/clusters/data/data.rb +33 -0
  76. data/features/support/lib/clusters/details/details_cluster.rb +36 -0
  77. data/features/support/lib/clusters/results/landing_cluster.rb +87 -0
  78. data/features/support/lib/clusters/results/render_cluster.rb +86 -0
  79. data/features/support/lib/clusters/results_cluster.rb +168 -0
  80. data/features/support/lib/helpers.rb +5 -0
  81. data/features/support/lib/helpers/browser.rb +235 -0
  82. data/features/support/lib/helpers/checkout.rb +29 -0
  83. data/features/support/lib/helpers/clusters.rb +166 -0
  84. data/features/support/lib/helpers/landing.rb +121 -0
  85. data/features/support/lib/helpers/render.rb +135 -0
  86. data/features/support/lib/price.rb +66 -0
  87. data/features/support/lib/process_manager.rb +104 -0
  88. data/features/support/lib/services.rb +4 -0
  89. data/features/support/lib/services/fenix.rb +14 -0
  90. data/features/support/lib/services/landing.rb +18 -0
  91. data/features/support/lib/services/results.rb +62 -0
  92. data/features/support/matchers.rb +120 -0
  93. data/features/support/redefinitions.rb +42 -0
  94. data/features/tests/checkout/agency.feature +27 -0
  95. data/features/tests/checkout/button_cac.feature +53 -0
  96. data/features/tests/checkout/cash_payment.feature +50 -0
  97. data/features/tests/checkout/compras_duplicadas.feature +95 -0
  98. data/features/tests/checkout/cupones.feature +34 -0
  99. data/features/tests/checkout/error_messages.feature +80 -0
  100. data/features/tests/checkout/fast_checkout.feature +82 -0
  101. data/features/tests/checkout/integration.feature +235 -0
  102. data/features/tests/checkout/low_cost.feature +62 -0
  103. data/features/tests/checkout/online_payment.feature +50 -0
  104. data/features/tests/checkout/price_jump.feature +103 -0
  105. data/features/tests/checkout/providers.feature +76 -0
  106. data/features/tests/checkout/seguros.feature +42 -0
  107. data/features/tests/contents/costs.feature +29 -0
  108. data/features/tests/contents/rules.feature +58 -0
  109. data/features/tests/contents/webcheckin.feature +26 -0
  110. data/features/tests/desambiguation/airports.feature +89 -0
  111. data/features/tests/desambiguation/airports_landing.feature +88 -0
  112. data/features/tests/desambiguation/city.feature +86 -0
  113. data/features/tests/filters/filters.feature +113 -0
  114. data/features/tests/fixes/advancedgui.feature +171 -0
  115. data/features/tests/fixes/advancednogui.feature +60 -0
  116. data/features/tests/fixes/book_no_gui.feature +21 -0
  117. data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
  118. data/features/tests/fixes/facebook.feature +31 -0
  119. data/features/tests/fixes/landing_checkout.feature +286 -0
  120. data/features/tests/fixes/landing_home_alerts.feature +82 -0
  121. data/features/tests/fixes/matrix_stops.feature +104 -0
  122. data/features/tests/fixes/one_day_search.feature +63 -0
  123. data/features/tests/fixes/print.feature +87 -0
  124. data/features/tests/fixes/searches_no_gui.feature +85 -0
  125. data/features/tests/fixes/upgrade_bussines.feature +100 -0
  126. data/features/tests/landing/landing_alerts.feature +93 -0
  127. data/features/tests/landing/landing_filters.feature +171 -0
  128. data/features/tests/landing/landing_home.feature +68 -0
  129. data/features/tests/landing/landing_integration.feature +149 -0
  130. data/features/tests/landing/landing_long_tail.feature +169 -0
  131. data/features/tests/landing/landing_matrix.feature +152 -0
  132. data/features/tests/landing/landing_negative.feature +151 -0
  133. data/features/tests/landing/landing_orders.feature +79 -0
  134. data/features/tests/landing/landing_pagination.feature +141 -0
  135. data/features/tests/landing/landing_passenger_review.feature +135 -0
  136. data/features/tests/landing/landing_positive.feature +151 -0
  137. data/features/tests/landing/landing_reviews.feature +135 -0
  138. data/features/tests/landing/landing_sort.feature +140 -0
  139. data/features/tests/landing/landing_tags.feature +142 -0
  140. data/features/tests/matrix/matrix_airlines.feature +80 -0
  141. data/features/tests/matrix/matrix_fare_chart.feature +40 -0
  142. data/features/tests/matrix/matrix_price.feature +40 -0
  143. data/features/tests/others/alerts.feature +89 -0
  144. data/features/tests/others/anticipatedsearch.feature +82 -0
  145. data/features/tests/others/chat.feature +23 -0
  146. data/features/tests/others/flights_tracker.feature +94 -0
  147. data/features/tests/others/newsletter.feature +118 -0
  148. data/features/tests/others/querystringparameters.feature +82 -0
  149. data/features/tests/others/recommendation.feature +107 -0
  150. data/features/tests/others/semaphore.feature +206 -0
  151. data/features/tests/search/basefare.feature +89 -0
  152. data/features/tests/search/errors.feature +198 -0
  153. data/features/tests/search/itineraries.feature +92 -0
  154. data/features/tests/search/orders.feature +88 -0
  155. data/features/tests/search/pagination.feature +73 -0
  156. data/features/tests/search/reviews.feature +83 -0
  157. data/features/tests/search/searches.feature +214 -0
  158. data/features/tests/search/wish_list.feature +58 -0
  159. data/flights_gui_henry_tests.gemspec +32 -0
  160. data/henry-context.yml +17262 -0
  161. metadata +382 -0
@@ -0,0 +1,151 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.positive
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @positive
7
+ Esquema del escenario: Ingresar a la home de landing
8
+ Cuando Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Y Verifico que la url sea la correcta
15
+ Y Verifico que la ciudad destino sea la que se eligio en home
16
+ Y Valido el sorting de landing en "<pais>"
17
+ Entonces Levanto los datos de clusters "<tipo>"
18
+ Y Comparo los datos de cluster contra los detalles
19
+ Y Verifico que el primer precio sea el que se mostro en home
20
+ Y Verifico que no vengan mas de diez resultados por pagina
21
+ Y Verifico que traiga precios con formato correcto y positivos
22
+ Y Verifico que traiga aeropuertos y concuerden con la ciudad buscada
23
+ Y Verifico que traiga fechas en formato correcto
24
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
25
+ Cuando Verifico la pagina donde ingresa
26
+ Cuando Si ingreso resultados, Espero que termine de cargar
27
+ Entonces Si ingreso resultados, Verifico que sea la pagina de resultados correcta
28
+ Y Si ingreso resultados, Verifico que traiga resultados
29
+ Y Si ingreso resultados, Verifico que el valor elejido en landing se encuentre en la lista de resultados
30
+ Y Si ingreso checkout, Verifico que ingrese al checkout
31
+
32
+ @ar
33
+ @roundtrip
34
+ Ejemplos:
35
+ |pais|tipo|
36
+ |AR |roundtrip|
37
+ @ar
38
+ @oneway
39
+ Ejemplos:
40
+ |pais|tipo|
41
+ |AR |oneway|
42
+ @br
43
+ @roundtrip
44
+ Ejemplos:
45
+ |pais|tipo|
46
+ |BR |roundtrip|
47
+ @br
48
+ @oneway
49
+ Ejemplos:
50
+ |pais|tipo|
51
+ |BR |oneway|
52
+ @co
53
+ @roundtrip
54
+ Ejemplos:
55
+ |pais|tipo|
56
+ |CO |roundtrip|
57
+ @co
58
+ @oneway
59
+ Ejemplos:
60
+ |pais|tipo|
61
+ |CO |oneway|
62
+ @cl
63
+ @roundtrip
64
+ Ejemplos:
65
+ |pais|tipo|
66
+ |CL |roundtrip|
67
+ @cl
68
+ @oneway
69
+ Ejemplos:
70
+ |pais|tipo|
71
+ |CL |oneway|
72
+ @cr
73
+ @roundtrip
74
+ Ejemplos:
75
+ |pais|tipo|
76
+ |CR |roundtrip|
77
+ @cr
78
+ @oneway
79
+ Ejemplos:
80
+ |pais|tipo|
81
+ |CR |oneway|
82
+ @ec
83
+ @roundtrip
84
+ Ejemplos:
85
+ |pais|tipo|
86
+ |EC |roundtrip|
87
+ @ec
88
+ @oneway
89
+ Ejemplos:
90
+ |pais|tipo|
91
+ |EC |oneway|
92
+ @mx
93
+ @roundtrip
94
+ Ejemplos:
95
+ |pais|tipo|
96
+ |MX |roundtrip|
97
+ @mx
98
+ @oneway
99
+ Ejemplos:
100
+ |pais|tipo|
101
+ |MX |oneway|
102
+ @pa
103
+ @roundtrip
104
+ Ejemplos:
105
+ |pais|tipo|
106
+ |PA |roundtrip|
107
+ @pa
108
+ @oneway
109
+ Ejemplos:
110
+ |pais|tipo|
111
+ |PA |oneway|
112
+ @pe
113
+ @roundtrip
114
+ Ejemplos:
115
+ |pais|tipo|
116
+ |PE |roundtrip|
117
+ @pe
118
+ @oneway
119
+ Ejemplos:
120
+ |pais|tipo|
121
+ |PE |oneway|
122
+ @us
123
+ @roundtrip
124
+ Ejemplos:
125
+ |pais|tipo|
126
+ |US |roundtrip|
127
+ @us
128
+ @oneway
129
+ Ejemplos:
130
+ |pais|tipo|
131
+ |US |oneway|
132
+ @uy
133
+ @roundtrip
134
+ Ejemplos:
135
+ |pais|tipo|
136
+ |UY |roundtrip|
137
+ @uy
138
+ @oneway
139
+ Ejemplos:
140
+ |pais|tipo|
141
+ |UY |oneway|
142
+ @ve
143
+ @roundtrip
144
+ Ejemplos:
145
+ |pais|tipo|
146
+ |VE |roundtrip|
147
+ @ve
148
+ @oneway
149
+ Ejemplos:
150
+ |pais|tipo|
151
+ |VE |oneway|
@@ -0,0 +1,135 @@
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 Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Entonces Verifico cada review "<pais>"
15
+
16
+ @ar
17
+ @roundtrip
18
+ Ejemplos:
19
+ |pais|tipo|
20
+ |AR |roundtrip|
21
+ @ar
22
+ @oneway
23
+ Ejemplos:
24
+ |pais|tipo|
25
+ |AR |oneway|
26
+ @br
27
+ @roundtrip
28
+ Ejemplos:
29
+ |pais|tipo|
30
+ |BR |roundtrip|
31
+ @br
32
+ @oneway
33
+ Ejemplos:
34
+ |pais|tipo|
35
+ |BR |oneway|
36
+ @co
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |CO |roundtrip|
41
+ @co
42
+ @oneway
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |CO |oneway|
46
+ @cl
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |CL |roundtrip|
51
+ @cl
52
+ @oneway
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |CL |oneway|
56
+ @cr
57
+ @roundtrip
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |CR |roundtrip|
61
+ @cr
62
+ @oneway
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |CR |oneway|
66
+ @ec
67
+ @roundtrip
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |EC |roundtrip|
71
+ @ec
72
+ @oneway
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |EC |oneway|
76
+ @mx
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |MX |roundtrip|
81
+ @mx
82
+ @oneway
83
+ Ejemplos:
84
+ |pais|tipo|
85
+ |MX |oneway|
86
+ @pa
87
+ @roundtrip
88
+ Ejemplos:
89
+ |pais|tipo|
90
+ |PA |roundtrip|
91
+ @pa
92
+ @oneway
93
+ Ejemplos:
94
+ |pais|tipo|
95
+ |PA |oneway|
96
+ @pe
97
+ @roundtrip
98
+ Ejemplos:
99
+ |pais|tipo|
100
+ |PE |roundtrip|
101
+ @pe
102
+ @oneway
103
+ Ejemplos:
104
+ |pais|tipo|
105
+ |PE |oneway|
106
+ @us
107
+ @roundtrip
108
+ Ejemplos:
109
+ |pais|tipo|
110
+ |US |roundtrip|
111
+ @us
112
+ @oneway
113
+ Ejemplos:
114
+ |pais|tipo|
115
+ |US |oneway|
116
+ @uy
117
+ @roundtrip
118
+ Ejemplos:
119
+ |pais|tipo|
120
+ |UY |roundtrip|
121
+ @uy
122
+ @oneway
123
+ Ejemplos:
124
+ |pais|tipo|
125
+ |UY |oneway|
126
+ @ve
127
+ @roundtrip
128
+ Ejemplos:
129
+ |pais|tipo|
130
+ |VE |roundtrip|
131
+ @ve
132
+ @oneway
133
+ Ejemplos:
134
+ |pais|tipo|
135
+ |VE |oneway|
@@ -0,0 +1,140 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.sort
4
+ Se verifica que el filtro por precio en matriz funcione y que el fare se muestren correctamente.
5
+
6
+ @sort
7
+ Esquema del escenario: Ingresar a resultados, filtro por un precio, verificar que se muestre correctamente y sea el fare que se debe aplicar
8
+ Cuando Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Y Elijo moneda local en "<pais>"
15
+ Y Valido el sorting de landing en "<pais>"
16
+ Y Filtro por un itinerario en la matriz en "<pais>"
17
+ Cuando Espero que termine de cargar
18
+ Entonces Valido la base tarifaria en "<pais>"
19
+ Y Valido el breakdown en "<pais>"
20
+
21
+ @ar
22
+ @roundtrip
23
+ Ejemplos:
24
+ |pais|tipo|
25
+ |AR |roundtrip|
26
+ @ar
27
+ @oneway
28
+ Ejemplos:
29
+ |pais|tipo|
30
+ |AR |oneway|
31
+ @br
32
+ @roundtrip
33
+ Ejemplos:
34
+ |pais|tipo|
35
+ |BR |roundtrip|
36
+ @br
37
+ @oneway
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |BR |oneway|
41
+ @co
42
+ @roundtrip
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |CO |roundtrip|
46
+ @co
47
+ @oneway
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |CO |oneway|
51
+ @cl
52
+ @roundtrip
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |CL |roundtrip|
56
+ @cl
57
+ @oneway
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |CL |oneway|
61
+ @cr
62
+ @roundtrip
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |CR |roundtrip|
66
+ @cr
67
+ @oneway
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |CR |oneway|
71
+ @ec
72
+ @roundtrip
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |EC |roundtrip|
76
+ @ec
77
+ @oneway
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |EC |oneway|
81
+ @mx
82
+ @roundtrip
83
+ Ejemplos:
84
+ |pais|tipo|
85
+ |MX |roundtrip|
86
+ @mx
87
+ @oneway
88
+ Ejemplos:
89
+ |pais|tipo|
90
+ |MX |oneway|
91
+ @pa
92
+ @roundtrip
93
+ Ejemplos:
94
+ |pais|tipo|
95
+ |PA |roundtrip|
96
+ @pa
97
+ @oneway
98
+ Ejemplos:
99
+ |pais|tipo|
100
+ |PA |oneway|
101
+ @pe
102
+ @roundtrip
103
+ Ejemplos:
104
+ |pais|tipo|
105
+ |PE |roundtrip|
106
+ @pe
107
+ @oneway
108
+ Ejemplos:
109
+ |pais|tipo|
110
+ |PE |oneway|
111
+ @us
112
+ @roundtrip
113
+ Ejemplos:
114
+ |pais|tipo|
115
+ |US |roundtrip|
116
+ @us
117
+ @oneway
118
+ Ejemplos:
119
+ |pais|tipo|
120
+ |US |oneway|
121
+ @uy
122
+ @roundtrip
123
+ Ejemplos:
124
+ |pais|tipo|
125
+ |UY |roundtrip|
126
+ @uy
127
+ @oneway
128
+ Ejemplos:
129
+ |pais|tipo|
130
+ |UY |oneway|
131
+ @ve
132
+ @roundtrip
133
+ Ejemplos:
134
+ |pais|tipo|
135
+ |VE |roundtrip|
136
+ @ve
137
+ @oneway
138
+ Ejemplos:
139
+ |pais|tipo|
140
+ |VE |oneway|
@@ -0,0 +1,142 @@
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 Genero resultados de landing en "<pais>"
9
+ Entonces Verifico que la pagina no rompa
10
+ Entonces Verifico que traiga resultados de landings
11
+ Cuando Elijo el tipo de vuelo "<tipo>"
12
+ Entonces Verifico que la pagina no rompa
13
+ Entonces Verifico que traiga resultados de landings
14
+ Y Verifico el tag de remarketing de facebook
15
+ Y Verifico el tag de facebook
16
+ Y Verifico el pixel de e-planning
17
+ Y Verifico el primer tag de google en resultado de landing
18
+ Y Verifico el segundo tag de google en resultado de landing
19
+ Y Verifico el tag de groovinads
20
+ Cuando Si el site es "AR|BR", Levanto los tag que deben mostrarse segun la ciudad buscada para landing
21
+ Entonces Si el site es "AR|BR", Verifico que se muestre en el codigo fuente
22
+
23
+ @ar
24
+ @roundtrip
25
+ Ejemplos:
26
+ |pais|tipo|
27
+ |AR |roundtrip|
28
+ @ar
29
+ @oneway
30
+ Ejemplos:
31
+ |pais|tipo|
32
+ |AR |oneway|
33
+ @br
34
+ @roundtrip
35
+ Ejemplos:
36
+ |pais|tipo|
37
+ |BR |roundtrip|
38
+ @br
39
+ @oneway
40
+ Ejemplos:
41
+ |pais|tipo|
42
+ |BR |oneway|
43
+ @co
44
+ @roundtrip
45
+ Ejemplos:
46
+ |pais|tipo|
47
+ |CO |roundtrip|
48
+ @co
49
+ @oneway
50
+ Ejemplos:
51
+ |pais|tipo|
52
+ |CO |oneway|
53
+ @cl
54
+ @roundtrip
55
+ Ejemplos:
56
+ |pais|tipo|
57
+ |CL |roundtrip|
58
+ @cl
59
+ @oneway
60
+ Ejemplos:
61
+ |pais|tipo|
62
+ |CL |oneway|
63
+ @cr
64
+ @roundtrip
65
+ Ejemplos:
66
+ |pais|tipo|
67
+ |CR |roundtrip|
68
+ @cr
69
+ @oneway
70
+ Ejemplos:
71
+ |pais|tipo|
72
+ |CR |oneway|
73
+ @ec
74
+ @roundtrip
75
+ Ejemplos:
76
+ |pais|tipo|
77
+ |EC |roundtrip|
78
+ @ec
79
+ @oneway
80
+ Ejemplos:
81
+ |pais|tipo|
82
+ |EC |oneway|
83
+ @mx
84
+ @roundtrip
85
+ Ejemplos:
86
+ |pais|tipo|
87
+ |MX |roundtrip|
88
+ @mx
89
+ @oneway
90
+ Ejemplos:
91
+ |pais|tipo|
92
+ |MX |oneway|
93
+ @pa
94
+ @roundtrip
95
+ Ejemplos:
96
+ |pais|tipo|
97
+ |PA |roundtrip|
98
+ @pa
99
+ @oneway
100
+ Ejemplos:
101
+ |pais|tipo|
102
+ |PA |oneway|
103
+ @pe
104
+ @roundtrip
105
+ Ejemplos:
106
+ |pais|tipo|
107
+ |PE |roundtrip|
108
+ @pe
109
+ @oneway
110
+ Ejemplos:
111
+ |pais|tipo|
112
+ |PE |oneway|
113
+ @us
114
+ @roundtrip
115
+ Ejemplos:
116
+ |pais|tipo|
117
+ |US |roundtrip|
118
+ @us
119
+ @oneway
120
+ Ejemplos:
121
+ |pais|tipo|
122
+ |US |oneway|
123
+ @uy
124
+ @roundtrip
125
+ Ejemplos:
126
+ |pais|tipo|
127
+ |UY |roundtrip|
128
+ @uy
129
+ @oneway
130
+ Ejemplos:
131
+ |pais|tipo|
132
+ |UY |oneway|
133
+ @ve
134
+ @roundtrip
135
+ Ejemplos:
136
+ |pais|tipo|
137
+ |VE |roundtrip|
138
+ @ve
139
+ @oneway
140
+ Ejemplos:
141
+ |pais|tipo|
142
+ |VE |oneway|