flights_gui_henry_tests 1.8.7

Sign up to get free protection for your applications and to get access to all the features.
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,157 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.negative
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @negative
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
+ #Entonces Verifico que los links de las ciudades esten correctos
12
+ Cuando Elijo un link para pasar a los resultados de landing
13
+ Cuando Ingreso a resultados de landing
14
+ Entonces Verifico que la pagina no rompa
15
+ Entonces Verifico que traiga resultados de landings
16
+ Cuando Elijo el tipo de vuelo "<tipo>"
17
+ Entonces Verifico que la pagina no rompa
18
+ Entonces Verifico que traiga resultados de landings
19
+ Y Verifico que el mensaje de error en el cluster sea correcto
20
+ Y Verifico que ciudades iguales de error
21
+ Y Verifico que si paso tres ciudades en la url de error
22
+ Y Verifico que fechas iguales no de error
23
+ Y Verifico que la ciudad "xxx" de error
24
+ Y Verifico que paginado negativo de error
25
+ #Y Verifico que dias de permanencia negativo de error
26
+ Y Verifico que si la fecha de ida ingresada es posterior a la fecha de vuelta de error
27
+ Y Verifico que si la url no tiene el seoPath, se redirige a la pagina que si lo tiene
28
+ Y Verifico que si el seoPath esta mal escrito, se redirige a la pagina con el seoPath correcto
29
+ Y Verifico que si se pone un codigo de aeropuerto en vez de uno de cuidad, se redirige a la ciudad del aeropuerto
30
+ Y Verifico que si se pone algun caracter en mayuscula, se redirige a todo minuscula
31
+ Y Verifico que si la url tiene parametros, se deben conservar en la redireccion
32
+ Y Verifico que la url para sem funcione correctamente con un ciudad con resultados sin seoPath
33
+ Y Verifico que la url para sem funcione correctamente con un ciudad sin resultados sin seoPath
34
+ Y Verifico que el paginado con "11" paginas redireccione a la primer pagina
35
+ Y Verifico que la url de landing para el destino "lrl" no rompa
36
+ Y Verifico que redirija a la home de vuelos si no hay oficinas en la ciudad de origen
37
+
38
+ @ar
39
+ @roundtrip
40
+ Ejemplos:
41
+ |pais|tipo|
42
+ |AR |roundtrip|
43
+ @ar
44
+ @oneway
45
+ Ejemplos:
46
+ |pais|tipo|
47
+ |AR |oneway|
48
+ @br
49
+ @roundtrip
50
+ Ejemplos:
51
+ |pais|tipo|
52
+ |BR |roundtrip|
53
+ @br
54
+ @oneway
55
+ Ejemplos:
56
+ |pais|tipo|
57
+ |BR |oneway|
58
+ @co
59
+ @roundtrip
60
+ Ejemplos:
61
+ |pais|tipo|
62
+ |CO |roundtrip|
63
+ @co
64
+ @oneway
65
+ Ejemplos:
66
+ |pais|tipo|
67
+ |CO |oneway|
68
+ @cl
69
+ @roundtrip
70
+ Ejemplos:
71
+ |pais|tipo|
72
+ |CL |roundtrip|
73
+ @cl
74
+ @oneway
75
+ Ejemplos:
76
+ |pais|tipo|
77
+ |CL |oneway|
78
+ @cr
79
+ @roundtrip
80
+ Ejemplos:
81
+ |pais|tipo|
82
+ |CR |roundtrip|
83
+ @cr
84
+ @oneway
85
+ Ejemplos:
86
+ |pais|tipo|
87
+ |CR |oneway|
88
+ @ec
89
+ @roundtrip
90
+ Ejemplos:
91
+ |pais|tipo|
92
+ |EC |roundtrip|
93
+ @ec
94
+ @oneway
95
+ Ejemplos:
96
+ |pais|tipo|
97
+ |EC |oneway|
98
+ @mx
99
+ @roundtrip
100
+ Ejemplos:
101
+ |pais|tipo|
102
+ |MX |roundtrip|
103
+ @mx
104
+ @oneway
105
+ Ejemplos:
106
+ |pais|tipo|
107
+ |MX |oneway|
108
+ @pa
109
+ @roundtrip
110
+ Ejemplos:
111
+ |pais|tipo|
112
+ |PA |roundtrip|
113
+ @pa
114
+ @oneway
115
+ Ejemplos:
116
+ |pais|tipo|
117
+ |PA |oneway|
118
+ @pe
119
+ @roundtrip
120
+ Ejemplos:
121
+ |pais|tipo|
122
+ |PE |roundtrip|
123
+ @pe
124
+ @oneway
125
+ Ejemplos:
126
+ |pais|tipo|
127
+ |PE |oneway|
128
+ @us
129
+ @roundtrip
130
+ Ejemplos:
131
+ |pais|tipo|
132
+ |US |roundtrip|
133
+ @us
134
+ @oneway
135
+ Ejemplos:
136
+ |pais|tipo|
137
+ |US |oneway|
138
+ @uy
139
+ @roundtrip
140
+ Ejemplos:
141
+ |pais|tipo|
142
+ |UY |roundtrip|
143
+ @uy
144
+ @oneway
145
+ Ejemplos:
146
+ |pais|tipo|
147
+ |UY |oneway|
148
+ @ve
149
+ @roundtrip
150
+ Ejemplos:
151
+ |pais|tipo|
152
+ |VE |roundtrip|
153
+ @ve
154
+ @oneway
155
+ Ejemplos:
156
+ |pais|tipo|
157
+ |VE |oneway|
@@ -0,0 +1,107 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.orders
4
+ Se verifica el correcto funcionamiento de los ordenamientos en resultados
5
+
6
+ @orders
7
+ Esquema del escenario: Verificar el orden de los resultados en 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
+ Cuando Elijo ordenamiento "<order>"
19
+ Cuando Espero que termine de cargar
20
+ Entonces Verifico que la pagina no rompa
21
+ Entonces Levanto los datos de los clusters "<tipo>"
22
+ Y Verifico ordenamiento <order>
23
+
24
+ @ar
25
+ Ejemplos:
26
+ |pais|tipo|order|
27
+ |AR |roundtrip|STOPSCOUNT_DESCENDING|
28
+ |AR |oneway|STOPSCOUNT_ASCENDING|
29
+ |AR |roundtrip|TOTALFARE_ASCENDING|
30
+ |AR |oneway|TOTALFARE_DESCENDING|
31
+ @br
32
+ Ejemplos:
33
+ |pais|tipo|order|
34
+ |BR |roundtrip|STOPSCOUNT_DESCENDING|
35
+ |BR |oneway|STOPSCOUNT_ASCENDING|
36
+ |BR |roundtrip|TOTALFARE_ASCENDING|
37
+ |BR |oneway|TOTALFARE_DESCENDING|
38
+ @cl
39
+ Ejemplos:
40
+ |pais|tipo|order|
41
+ |CL |roundtrip|STOPSCOUNT_DESCENDING|
42
+ |CL |oneway|STOPSCOUNT_ASCENDING|
43
+ |CL |roundtrip|TOTALFARE_ASCENDING|
44
+ |CL |oneway|TOTALFARE_DESCENDING|
45
+ @co
46
+ Ejemplos:
47
+ |pais|tipo|order|
48
+ |CO |roundtrip|STOPSCOUNT_DESCENDING|
49
+ |CO |oneway|STOPSCOUNT_ASCENDING|
50
+ |CO |roundtrip|TOTALFARE_ASCENDING|
51
+ |CO |oneway|TOTALFARE_DESCENDING|
52
+ @cr
53
+ Ejemplos:
54
+ |pais|tipo|order|
55
+ |CR |roundtrip|STOPSCOUNT_DESCENDING|
56
+ |CR |oneway|STOPSCOUNT_ASCENDING|
57
+ |CR |roundtrip|TOTALFARE_ASCENDING|
58
+ |CR |oneway|TOTALFARE_DESCENDING|
59
+ @pa
60
+ Ejemplos:
61
+ |pais|tipo|order|
62
+ |PA |roundtrip|STOPSCOUNT_DESCENDING|
63
+ |PA |oneway|STOPSCOUNT_ASCENDING|
64
+ |PA |roundtrip|TOTALFARE_ASCENDING|
65
+ |PA |oneway|TOTALFARE_DESCENDING|
66
+ @ec
67
+ Ejemplos:
68
+ |pais|tipo|order|
69
+ |EC |roundtrip|STOPSCOUNT_DESCENDING|
70
+ |EC |oneway|STOPSCOUNT_ASCENDING|
71
+ |EC |roundtrip|TOTALFARE_ASCENDING|
72
+ |EC |oneway|TOTALFARE_DESCENDING|
73
+ @mx
74
+ Ejemplos:
75
+ |pais|tipo|order|
76
+ |MX |roundtrip|STOPSCOUNT_DESCENDING|
77
+ |MX |oneway|STOPSCOUNT_ASCENDING|
78
+ |MX |roundtrip|TOTALFARE_ASCENDING|
79
+ |MX |oneway|TOTALFARE_DESCENDING|
80
+ @pe
81
+ Ejemplos:
82
+ |pais|tipo|order|
83
+ |PE |roundtrip|STOPSCOUNT_DESCENDING|
84
+ |PE |oneway|STOPSCOUNT_ASCENDING|
85
+ |PE |roundtrip|TOTALFARE_ASCENDING|
86
+ |PE |oneway|TOTALFARE_DESCENDING|
87
+ @uy
88
+ Ejemplos:
89
+ |pais|tipo|order|
90
+ |UY |roundtrip|STOPSCOUNT_DESCENDING|
91
+ |UY |oneway|STOPSCOUNT_ASCENDING|
92
+ |UY |roundtrip|TOTALFARE_ASCENDING|
93
+ |UY |oneway|TOTALFARE_DESCENDING|
94
+ @us
95
+ Ejemplos:
96
+ |pais|tipo|order|
97
+ |US |roundtrip|STOPSCOUNT_DESCENDING|
98
+ |US |oneway|STOPSCOUNT_ASCENDING|
99
+ |US |roundtrip|TOTALFARE_ASCENDING|
100
+ |US |oneway|TOTALFARE_DESCENDING|
101
+ @ve
102
+ Ejemplos:
103
+ |pais|tipo|order|
104
+ |VE |roundtrip|STOPSCOUNT_DESCENDING|
105
+ |VE |oneway|STOPSCOUNT_ASCENDING|
106
+ |VE |roundtrip|TOTALFARE_ASCENDING|
107
+ |VE |oneway|TOTALFARE_DESCENDING|
@@ -0,0 +1,142 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.pagination
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @pagination
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
+ Entonces Verifico que la pagina no rompa
16
+ #Y Verifico que el paginado mantenga los filtros
17
+ Cuando Vuelvo a la primer pagina
18
+ Entonces Verifico que funcione el paginado correctamente
19
+ Cuando Vuelvo a la primer pagina
20
+ Entonces Verifico que la pagina no rompa
21
+ Entonces Verifico que el paginado no traiga mas de "<x>" paginas
22
+
23
+ @ar
24
+ @roundtrip
25
+ Ejemplos:
26
+ |pais|tipo|x|
27
+ |AR |roundtrip|10|
28
+ @ar
29
+ @oneway
30
+ Ejemplos:
31
+ |pais|tipo|x|
32
+ |AR |oneway|10|
33
+ @br
34
+ @roundtrip
35
+ Ejemplos:
36
+ |pais|tipo|x|
37
+ |BR |roundtrip|10|
38
+ @br
39
+ @oneway
40
+ Ejemplos:
41
+ |pais|tipo|x|
42
+ |BR |oneway|10|
43
+ @co
44
+ @roundtrip
45
+ Ejemplos:
46
+ |pais|tipo|x|
47
+ |CO |roundtrip|10|
48
+ @co
49
+ @oneway
50
+ Ejemplos:
51
+ |pais|tipo|x|
52
+ |CO |oneway|10|
53
+ @cl
54
+ @roundtrip
55
+ Ejemplos:
56
+ |pais|tipo|x|
57
+ |CL |roundtrip|10|
58
+ @cl
59
+ @oneway
60
+ Ejemplos:
61
+ |pais|tipo|x|
62
+ |CL |oneway|10|
63
+ @cr
64
+ @roundtrip
65
+ Ejemplos:
66
+ |pais|tipo|x|
67
+ |CR |roundtrip|10|
68
+ @cr
69
+ @oneway
70
+ Ejemplos:
71
+ |pais|tipo|x|
72
+ |CR |oneway|10|
73
+ @ec
74
+ @roundtrip
75
+ Ejemplos:
76
+ |pais|tipo|x|
77
+ |EC |roundtrip|10|
78
+ @ec
79
+ @oneway
80
+ Ejemplos:
81
+ |pais|tipo|x|
82
+ |EC |oneway|10|
83
+ @mx
84
+ @roundtrip
85
+ Ejemplos:
86
+ |pais|tipo|x|
87
+ |MX |roundtrip|10|
88
+ @mx
89
+ @oneway
90
+ Ejemplos:
91
+ |pais|tipo|x|
92
+ |MX |oneway|10|
93
+ @pa
94
+ @roundtrip
95
+ Ejemplos:
96
+ |pais|tipo|x|
97
+ |PA |roundtrip|10|
98
+ @pa
99
+ @oneway
100
+ Ejemplos:
101
+ |pais|tipo|x|
102
+ |PA |oneway|10|
103
+ @pe
104
+ @roundtrip
105
+ Ejemplos:
106
+ |pais|tipo|x|
107
+ |PE |roundtrip|10|
108
+ @pe
109
+ @oneway
110
+ Ejemplos:
111
+ |pais|tipo|x|
112
+ |PE |oneway|10|
113
+ @us
114
+ @roundtrip
115
+ Ejemplos:
116
+ |pais|tipo|x|
117
+ |US |roundtrip|10|
118
+ @us
119
+ @oneway
120
+ Ejemplos:
121
+ |pais|tipo|x|
122
+ |US |oneway|10|
123
+ @uy
124
+ @roundtrip
125
+ Ejemplos:
126
+ |pais|tipo|x|
127
+ |UY |roundtrip|10|
128
+ @uy
129
+ @oneway
130
+ Ejemplos:
131
+ |pais|tipo|x|
132
+ |UY |oneway|10|
133
+ @ve
134
+ @roundtrip
135
+ Ejemplos:
136
+ |pais|tipo|x|
137
+ |VE |roundtrip|10|
138
+ @ve
139
+ @oneway
140
+ Ejemplos:
141
+ |pais|tipo|x|
142
+ |VE |oneway|10|
@@ -0,0 +1,139 @@
1
+ #language: es
2
+ @landing
3
+ Característica: landing.passenger
4
+ Se verifica que la review de los pasajeros se muestre correctamente
5
+
6
+ @passenger
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 que se muestre correctamente la review de pasajero
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,155 @@
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 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
+ Y Verifico que la url sea la correcta
19
+ Y Verifico que la ciudad destino sea la que se eligio en home
20
+ Entonces Levanto los datos de clusters "<tipo>"
21
+ Y Comparo los datos de cluster contra los detalles
22
+ Y Verifico que el primer precio sea el que se mostro en home
23
+ Y Verifico que no vengan mas de diez resultados por pagina
24
+ Y Verifico que traiga precios con formato correcto y positivos
25
+ Y Verifico que traiga aeropuertos y concuerden con la ciudad buscada
26
+ Y Verifico que traiga fechas en formato correcto
27
+ Cuando Elijo un ticket e ingreso a la pagina de resultados
28
+ Cuando Verifico la pagina donde ingresa
29
+ Cuando Si ingreso resultados, Espero que termine de cargar
30
+ Entonces Si ingreso resultados, Verifico que sea la pagina de resultados correcta
31
+ Y Si ingreso resultados, Verifico que traiga resultados
32
+ Y Si ingreso resultados, Verifico que el valor elejido en landing se encuentre en la lista de resultados
33
+ Y Si ingreso checkout, Verifico que ingrese al checkout
34
+
35
+
36
+ @ar
37
+ @roundtrip
38
+ Ejemplos:
39
+ |pais|tipo|
40
+ |AR |roundtrip|
41
+ @ar
42
+ @oneway
43
+ Ejemplos:
44
+ |pais|tipo|
45
+ |AR |oneway|
46
+ @br
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|
50
+ |BR |roundtrip|
51
+ @br
52
+ @oneway
53
+ Ejemplos:
54
+ |pais|tipo|
55
+ |BR |oneway|
56
+ @co
57
+ @roundtrip
58
+ Ejemplos:
59
+ |pais|tipo|
60
+ |CO |roundtrip|
61
+ @co
62
+ @oneway
63
+ Ejemplos:
64
+ |pais|tipo|
65
+ |CO |oneway|
66
+ @cl
67
+ @roundtrip
68
+ Ejemplos:
69
+ |pais|tipo|
70
+ |CL |roundtrip|
71
+ @cl
72
+ @oneway
73
+ Ejemplos:
74
+ |pais|tipo|
75
+ |CL |oneway|
76
+ @cr
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|
80
+ |CR |roundtrip|
81
+ @cr
82
+ @oneway
83
+ Ejemplos:
84
+ |pais|tipo|
85
+ |CR |oneway|
86
+ @ec
87
+ @roundtrip
88
+ Ejemplos:
89
+ |pais|tipo|
90
+ |EC |roundtrip|
91
+ @ec
92
+ @oneway
93
+ Ejemplos:
94
+ |pais|tipo|
95
+ |EC |oneway|
96
+ @mx
97
+ @roundtrip
98
+ Ejemplos:
99
+ |pais|tipo|
100
+ |MX |roundtrip|
101
+ @mx
102
+ @oneway
103
+ Ejemplos:
104
+ |pais|tipo|
105
+ |MX |oneway|
106
+ @pa
107
+ @roundtrip
108
+ Ejemplos:
109
+ |pais|tipo|
110
+ |PA |roundtrip|
111
+ @pa
112
+ @oneway
113
+ Ejemplos:
114
+ |pais|tipo|
115
+ |PA |oneway|
116
+ @pe
117
+ @roundtrip
118
+ Ejemplos:
119
+ |pais|tipo|
120
+ |PE |roundtrip|
121
+ @pe
122
+ @oneway
123
+ Ejemplos:
124
+ |pais|tipo|
125
+ |PE |oneway|
126
+ @us
127
+ @roundtrip
128
+ Ejemplos:
129
+ |pais|tipo|
130
+ |US |roundtrip|
131
+ @us
132
+ @oneway
133
+ Ejemplos:
134
+ |pais|tipo|
135
+ |US |oneway|
136
+ @uy
137
+ @roundtrip
138
+ Ejemplos:
139
+ |pais|tipo|
140
+ |UY |roundtrip|
141
+ @uy
142
+ @oneway
143
+ Ejemplos:
144
+ |pais|tipo|
145
+ |UY |oneway|
146
+ @ve
147
+ @roundtrip
148
+ Ejemplos:
149
+ |pais|tipo|
150
+ |VE |roundtrip|
151
+ @ve
152
+ @oneway
153
+ Ejemplos:
154
+ |pais|tipo|
155
+ |VE |oneway|