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,88 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.basefare
4
+ Se verifica que el filtro por precio en matriz funcione y que el fare se muestren correctamente.
5
+
6
+ @basefare
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 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
+ Y Verifico los textos de las opciones del combo
12
+ Y Valido el sorting en "<pais>"
13
+ Y Elijo moneda local en "<pais>"
14
+ Y Filtro por un itinerario en la matriz en "<pais>"
15
+ Entonces Valido la base tarifaria en "<pais>"
16
+ Y Valido el breakdown en "<pais>"
17
+
18
+ @ar
19
+ Ejemplos:
20
+ |pais|tipo|cabotage|
21
+ |AR |roundtrip|true|
22
+ |AR |multipledestinations|true|
23
+ |AR |oneway|nil|
24
+ @br
25
+ Ejemplos:
26
+ |pais|tipo|cabotage|
27
+ |BR |oneway|true|
28
+ |BR |roundtrip|true|
29
+ @co
30
+ Ejemplos:
31
+ |pais|tipo|cabotage|
32
+ |CO |roundtrip|true|
33
+ |CO |oneway|nil|
34
+ |CO |multipledestinations|nil|
35
+ @mx
36
+ Ejemplos:
37
+ |pais|tipo|cabotage|
38
+ |MX |roundtrip|true|
39
+ |MX |oneway|nil|
40
+ |MX |multipledestinations|nil|
41
+ @ve
42
+ Ejemplos:
43
+ |pais|tipo|cabotage|
44
+ |VE |roundtrip|true|
45
+ |VE |oneway|true|
46
+ |VE |multipledestinations|true|
47
+ @cl
48
+ Ejemplos:
49
+ |pais|tipo|cabotage|
50
+ |CL |roundtrip|nil|
51
+ |CL |oneway|nil|
52
+ |CL |multipledestinations|nil|
53
+ @cr
54
+ Ejemplos:
55
+ |pais|tipo|cabotage|
56
+ |CR |roundtrip|true|
57
+ |CR |oneway|true|
58
+ |CR |multipledestinations|nil|
59
+ @ec
60
+ Ejemplos:
61
+ |pais|tipo|cabotage|
62
+ |EC |multipledestinations|true|
63
+ |EC |roundtrip|nil|
64
+ |EC |oneway|nil|
65
+ @pa
66
+ Ejemplos:
67
+ |pais|tipo|cabotage|
68
+ |PA |oneway|true|
69
+ |PA |multipledestinations|true|
70
+ |PA |roundtrip|nil|
71
+ @pe
72
+ Ejemplos:
73
+ |pais|tipo|cabotage|
74
+ |PE |roundtrip|true|
75
+ |PE |oneway|true|
76
+ |PE |multipledestinations|nil|
77
+ @us
78
+ Ejemplos:
79
+ |pais|tipo|cabotage|
80
+ |US |roundtrip|true|
81
+ |US |oneway|true|
82
+ |US |multipledestinations|nil|
83
+ @uy
84
+ Ejemplos:
85
+ |pais|tipo|cabotage|
86
+ |UY |multipledestinations|true|
87
+ |UY |roundtrip|nil|
88
+ |UY |oneway|nil|
@@ -0,0 +1,85 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.itineraries
4
+ Se verifica que los cluster contengan datos y funcionalidad correcta.
5
+
6
+ @itineraries
7
+ Esquema del escenario: Se recorren todos los clusters, por cada uno se validan datos consistentes con la busqueda y funcionamiento de popups
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Ordeno por "TOTALFARE_ASCENDING"
12
+ Cuando Espero que termine de cargar
13
+ Entonces Verifico cada cluster "<tipo>"
14
+
15
+ @ar
16
+ Ejemplos:
17
+ |pais|tipo|cabotage|
18
+ |AR |roundtrip|true|
19
+ |AR |multipledestinations|true|
20
+ |AR |oneway|nil|
21
+ @br
22
+ Ejemplos:
23
+ |pais|tipo|cabotage|
24
+ |BR |oneway|true|
25
+ |BR |roundtrip|true|
26
+ @co
27
+ Ejemplos:
28
+ |pais|tipo|cabotage|
29
+ |CO |roundtrip|true|
30
+ |CO |oneway|nil|
31
+ |CO |multipledestinations|nil|
32
+ @mx
33
+ Ejemplos:
34
+ |pais|tipo|cabotage|
35
+ |MX |roundtrip|true|
36
+ |MX |oneway|nil|
37
+ |MX |multipledestinations|nil|
38
+ @ve
39
+ Ejemplos:
40
+ |pais|tipo|cabotage|
41
+ |VE |roundtrip|true|
42
+ |VE |oneway|true|
43
+ |VE |multipledestinations|true|
44
+ @cl
45
+ Ejemplos:
46
+ |pais|tipo|cabotage|
47
+ |CL |roundtrip|nil|
48
+ |CL |oneway|nil|
49
+ |CL |multipledestinations|nil|
50
+ @cr
51
+ Ejemplos:
52
+ |pais|tipo|cabotage|
53
+ |CR |roundtrip|true|
54
+ |CR |oneway|true|
55
+ |CR |multipledestinations|nil|
56
+ @ec
57
+ Ejemplos:
58
+ |pais|tipo|cabotage|
59
+ |EC |multipledestinations|true|
60
+ |EC |roundtrip|nil|
61
+ |EC |oneway|nil|
62
+ @pa
63
+ Ejemplos:
64
+ |pais|tipo|cabotage|
65
+ |PA |oneway|true|
66
+ |PA |multipledestinations|true|
67
+ |PA |roundtrip|nil|
68
+ @pe
69
+ Ejemplos:
70
+ |pais|tipo|cabotage|
71
+ |PE |roundtrip|true|
72
+ |PE |oneway|true|
73
+ |PE |multipledestinations|nil|
74
+ @us
75
+ Ejemplos:
76
+ |pais|tipo|cabotage|
77
+ |US |roundtrip|true|
78
+ |US |oneway|true|
79
+ |US |multipledestinations|nil|
80
+ @uy
81
+ Ejemplos:
82
+ |pais|tipo|cabotage|
83
+ |UY |multipledestinations|true|
84
+ |UY |roundtrip|nil|
85
+ |UY |oneway|nil|
@@ -0,0 +1,100 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.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
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
+ Cuando Elijo ordenamiento "<order>"
12
+ Cuando Espero que termine de cargar
13
+ Entonces Verifico que la pagina no rompa
14
+ Entonces Levanto los datos de los clusters "<tipo>"
15
+ Y Verifico ordenamiento <order>
16
+
17
+ @ar
18
+ Ejemplos:
19
+ |pais|tipo|order|
20
+ |AR |roundtrip|STOPSCOUNT_DESCENDING|
21
+ |AR |roundtrip|STOPSCOUNT_ASCENDING|
22
+ |AR |oneway|TOTALFARE_ASCENDING|
23
+ |AR |multipledestinations|TOTALFARE_DESCENDING|
24
+ @br
25
+ Ejemplos:
26
+ |pais|tipo|order|
27
+ |BR |roundtrip|STOPSCOUNT_DESCENDING|
28
+ |BR |roundtrip|STOPSCOUNT_ASCENDING|
29
+ |BR |oneway|TOTALFARE_ASCENDING|
30
+ |BR |oneway|TOTALFARE_DESCENDING|
31
+ @cl
32
+ Ejemplos:
33
+ |pais|tipo|order|
34
+ |CL |roundtrip|STOPSCOUNT_DESCENDING|
35
+ |CL |roundtrip|STOPSCOUNT_ASCENDING|
36
+ |CL |oneway|TOTALFARE_ASCENDING|
37
+ |CL |multipledestinations|TOTALFARE_DESCENDING|
38
+ @co
39
+ Ejemplos:
40
+ |pais|tipo|order|
41
+ |CO |roundtrip|STOPSCOUNT_DESCENDING|
42
+ |CO |roundtrip|STOPSCOUNT_ASCENDING|
43
+ |CO |oneway|TOTALFARE_ASCENDING|
44
+ |CO |multipledestinations|TOTALFARE_DESCENDING|
45
+ @cr
46
+ Ejemplos:
47
+ |pais|tipo|order|
48
+ |CR |roundtrip|STOPSCOUNT_DESCENDING|
49
+ |CR |roundtrip|STOPSCOUNT_ASCENDING|
50
+ |CR |oneway|TOTALFARE_ASCENDING|
51
+ |CR |multipledestinations|TOTALFARE_DESCENDING|
52
+ @pa
53
+ Ejemplos:
54
+ |pais|tipo|order|
55
+ |PA |roundtrip|STOPSCOUNT_DESCENDING|
56
+ |PA |roundtrip|STOPSCOUNT_ASCENDING|
57
+ |PA |oneway|TOTALFARE_ASCENDING|
58
+ |PA |multipledestinations|TOTALFARE_DESCENDING|
59
+ @ec
60
+ Ejemplos:
61
+ |pais|tipo|order|
62
+ |EC |roundtrip|STOPSCOUNT_DESCENDING|
63
+ |EC |roundtrip|STOPSCOUNT_ASCENDING|
64
+ |EC |oneway|TOTALFARE_ASCENDING|
65
+ |EC |multipledestinations|TOTALFARE_DESCENDING|
66
+ @mx
67
+ Ejemplos:
68
+ |pais|tipo|order|
69
+ |MX |roundtrip|STOPSCOUNT_DESCENDING|
70
+ |MX |roundtrip|STOPSCOUNT_ASCENDING|
71
+ |MX |oneway|TOTALFARE_ASCENDING|
72
+ |MX |multipledestinations|TOTALFARE_DESCENDING|
73
+ @pe
74
+ Ejemplos:
75
+ |pais|tipo|order|
76
+ |PE |roundtrip|STOPSCOUNT_DESCENDING|
77
+ |PE |roundtrip|STOPSCOUNT_ASCENDING|
78
+ |PE |oneway|TOTALFARE_ASCENDING|
79
+ |PE |multipledestinations|TOTALFARE_DESCENDING|
80
+ @uy
81
+ Ejemplos:
82
+ |pais|tipo|order|
83
+ |UY |roundtrip|STOPSCOUNT_DESCENDING|
84
+ |UY |roundtrip|STOPSCOUNT_ASCENDING|
85
+ |UY |oneway|TOTALFARE_ASCENDING|
86
+ |UY |multipledestinations|TOTALFARE_DESCENDING|
87
+ @us
88
+ Ejemplos:
89
+ |pais|tipo|order|
90
+ |US |roundtrip|STOPSCOUNT_DESCENDING|
91
+ |US |roundtrip|STOPSCOUNT_ASCENDING|
92
+ |US |oneway|TOTALFARE_ASCENDING|
93
+ |US |multipledestinations|TOTALFARE_DESCENDING|
94
+ @ve
95
+ Ejemplos:
96
+ |pais|tipo|order|
97
+ |VE |roundtrip|STOPSCOUNT_DESCENDING|
98
+ |VE |roundtrip|STOPSCOUNT_ASCENDING|
99
+ |VE |oneway|TOTALFARE_ASCENDING|
100
+ |VE |multipledestinations|TOTALFARE_DESCENDING|
@@ -0,0 +1,70 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.pagination
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @pagination
7
+ Esquema del escenario: Verificar la paginacion de resultados
8
+ Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Cuando Espero que termine de cargar
10
+ Entonces Verifico que traiga resultados
11
+ Cuando Vuelvo a la primer pagina en resultados
12
+ Entonces Verifico que funcione el paginado correctamente en resultados
13
+ Cuando Vuelvo a la primer pagina en resultados
14
+ Entonces Verifico que el paginado no traiga mas de "<x>" paginas en resultados
15
+
16
+ @ar
17
+ Ejemplos:
18
+ |pais|tipo|cabotage|x|
19
+ |AR |roundtrip|true|10|
20
+ |AR |roundtrip|nil|10|
21
+ @br
22
+ Ejemplos:
23
+ |pais|tipo|cabotage|x|
24
+ |BR |roundtrip|true|10|
25
+ |BR |oneway|true|10|
26
+ |BR |multipledestinations|true|10|
27
+ @co
28
+ Ejemplos:
29
+ |pais|tipo|cabotage|x|
30
+ |CO |roundtrip|nil|10|
31
+ @cl
32
+ Ejemplos:
33
+ |pais|tipo|cabotage|x|
34
+ |CL |roundtrip|true|10|
35
+ |CL |roundtrip|nil|10|
36
+ @cr
37
+ Ejemplos:
38
+ |pais|tipo|cabotage|x|
39
+ |CR |roundtrip|nil|10|
40
+ @ec
41
+ Ejemplos:
42
+ |pais|tipo|cabotage|x|
43
+ |EC |roundtrip|nil|10|
44
+ @mx
45
+ Ejemplos:
46
+ |pais|tipo|cabotage|x|
47
+ |MX |roundtrip|true|10|
48
+ |MX |roundtrip|nil|10|
49
+ @pa
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|x|
52
+ |PA |roundtrip|nil|10|
53
+ @pe
54
+ Ejemplos:
55
+ |pais|tipo|cabotage|x|
56
+ |PE |roundtrip|nil|10|
57
+ @us
58
+ Ejemplos:
59
+ |pais|tipo|cabotage|x|
60
+ |US |roundtrip|true|10|
61
+ |US |roundtrip|nil|10|
62
+ @uy
63
+ Ejemplos:
64
+ |pais|tipo|cabotage|x|
65
+ |UY |roundtrip|nil|10|
66
+ @ve
67
+ Ejemplos:
68
+ |pais|tipo|cabotage|x|
69
+ |VE |roundtrip|nil|10|
70
+ |VE |oneway|nil|10|
@@ -0,0 +1,84 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.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 resultados e iterar por cada popup de review
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 el pop up de ecologicos en la matriz
12
+ Entonces Verifico cada review "<pais>"
13
+
14
+ @ar
15
+ Ejemplos:
16
+ |pais|tipo|cabotage|
17
+ |AR |roundtrip|true|
18
+ |AR |multipledestinations|true|
19
+ |AR |oneway|nil|
20
+ @br
21
+ Ejemplos:
22
+ |pais|tipo|cabotage|
23
+ |BR |oneway|true|
24
+ |BR |roundtrip|true|
25
+ @co
26
+ Ejemplos:
27
+ |pais|tipo|cabotage|
28
+ |CO |roundtrip|true|
29
+ |CO |oneway|nil|
30
+ |CO |multipledestinations|nil|
31
+ @mx
32
+ Ejemplos:
33
+ |pais|tipo|cabotage|
34
+ |MX |roundtrip|true|
35
+ |MX |oneway|nil|
36
+ |MX |multipledestinations|nil|
37
+ @ve
38
+ Ejemplos:
39
+ |pais|tipo|cabotage|
40
+ |VE |roundtrip|true|
41
+ |VE |oneway|true|
42
+ |VE |multipledestinations|true|
43
+ @cl
44
+ Ejemplos:
45
+ |pais|tipo|cabotage|
46
+ |CL |roundtrip|nil|
47
+ |CL |oneway|nil|
48
+ |CL |multipledestinations|nil|
49
+ @cr
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|
52
+ |CR |roundtrip|true|
53
+ |CR |oneway|true|
54
+ |CR |multipledestinations|nil|
55
+ @ec
56
+ Ejemplos:
57
+ |pais|tipo|cabotage|
58
+ |EC |multipledestinations|true|
59
+ |EC |roundtrip|nil|
60
+ |EC |oneway|nil|
61
+ @pa
62
+ Ejemplos:
63
+ |pais|tipo|cabotage|
64
+ |PA |oneway|true|
65
+ |PA |multipledestinations|true|
66
+ |PA |roundtrip|nil|
67
+ @pe
68
+ Ejemplos:
69
+ |pais|tipo|cabotage|
70
+ |PE |roundtrip|true|
71
+ |PE |oneway|true|
72
+ |PE |multipledestinations|nil|
73
+ @us
74
+ Ejemplos:
75
+ |pais|tipo|cabotage|
76
+ |US |roundtrip|true|
77
+ |US |oneway|true|
78
+ |US |multipledestinations|nil|
79
+ @uy
80
+ Ejemplos:
81
+ |pais|tipo|cabotage|
82
+ |UY |multipledestinations|true|
83
+ |UY |roundtrip|nil|
84
+ |UY |oneway|nil|
@@ -0,0 +1,197 @@
1
+ #language: es
2
+ @search
3
+ Característica: search.searches
4
+ Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
+
6
+ @searches
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 Verifico el nuevo loader
11
+ Cuando Espero que termine de cargar
12
+ Entonces Verifico que traiga resultados
13
+ Cuando Si el site es "AR|BR", Levanto los tag que deben mostrarse segun la ciudad buscada para una busqueda "<tipo>"
14
+ Entonces Si el site es "AR|BR", Verifico que se muestre en el codigo fuente
15
+ Y Verifico si se muestran los beneficios en resultados
16
+ Y Verifico el primer tag de google en resultado de fgui
17
+ Y Verifico el segundo tag de google en resultado de fgui
18
+ Y Verifico el tag de groovinads
19
+ Y Verifico el logger en resultado de fgui
20
+ Y Verifico el tag de canonical
21
+ Y Verifico el tag de remarketing de facebook
22
+ Y Verifico el tag de facebook
23
+ Y Verifico el pixel de e-planning
24
+ Y Verifico que no se muestre la leyenda de mejor precio garantizado en resultados
25
+ Cuando Genero el respond de la busqueda
26
+ Y Verifico que las datos de la pagina sean consistente a la busqueda realizada
27
+ Cuando Elijo un itinerario y paso a checkout
28
+ Cuando Verifico que ingrese al checkout
29
+ Entonces Verifico que la pagina no rompa
30
+ Y Verifico si se muestran los beneficios en checkout
31
+ Y Verifico que se muestren la caja de clientes felices
32
+
33
+ @ar
34
+ @roundtrip
35
+ Ejemplos:
36
+ |pais|tipo|cabotage|
37
+ |AR |roundtrip|nil|
38
+ @ar
39
+ @oneway
40
+ Ejemplos:
41
+ |pais|tipo|cabotage|
42
+ |AR |oneway|true|
43
+ @ar
44
+ @multipledestinations
45
+ Ejemplos:
46
+ |pais|tipo|cabotage|
47
+ |AR |multipledestinations|nil|
48
+ @co
49
+ @roundtrip
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|
52
+ |CO |roundtrip|nil|
53
+ @co
54
+ @oneway
55
+ Ejemplos:
56
+ |pais|tipo|cabotage|
57
+ |CO |oneway|nil|
58
+ @co
59
+ @multipledestinations
60
+ Ejemplos:
61
+ |pais|tipo|cabotage|
62
+ |CO |multipledestinations|nil|
63
+ @cl
64
+ @roundtrip
65
+ Ejemplos:
66
+ |pais|tipo|cabotage|
67
+ |CL |roundtrip|nil|
68
+ @cl
69
+ @oneway
70
+ Ejemplos:
71
+ |pais|tipo|cabotage|
72
+ |CL |oneway|nil|
73
+ @cl
74
+ @multipledestinations
75
+ Ejemplos:
76
+ |pais|tipo|cabotage|
77
+ |CL |multipledestinations|nil|
78
+ @cr
79
+ @roundtrip
80
+ Ejemplos:
81
+ |pais|tipo|cabotage|
82
+ |CR |roundtrip|nil|
83
+ @cr
84
+ @oneway
85
+ Ejemplos:
86
+ |pais|tipo|cabotage|
87
+ |CR |oneway|nil|
88
+ @cr
89
+ @multipledestinations
90
+ Ejemplos:
91
+ |pais|tipo|cabotage|
92
+ |CR |multipledestinations|nil|
93
+ @ec
94
+ @roundtrip
95
+ Ejemplos:
96
+ |pais|tipo|cabotage|
97
+ |EC |roundtrip|nil|
98
+ @ec
99
+ @oneway
100
+ Ejemplos:
101
+ |pais|tipo|cabotage|
102
+ |EC |oneway|nil|
103
+ @ec
104
+ @multipledestinations
105
+ Ejemplos:
106
+ |pais|tipo|cabotage|
107
+ |EC |multipledestinations|nil|
108
+ @mx
109
+ @roundtrip
110
+ Ejemplos:
111
+ |pais|tipo|cabotage|
112
+ |MX |roundtrip|nil|
113
+ @mx
114
+ @oneway
115
+ Ejemplos:
116
+ |pais|tipo|cabotage|
117
+ |MX |oneway|nil|
118
+ @mx
119
+ @multipledestinations
120
+ Ejemplos:
121
+ |pais|tipo|cabotage|
122
+ |MX |multipledestinations|nil|
123
+ @pa
124
+ @roundtrip
125
+ Ejemplos:
126
+ |pais|tipo|cabotage|
127
+ |PA |roundtrip|nil|
128
+ @pa
129
+ @oneway
130
+ Ejemplos:
131
+ |pais|tipo|cabotage|
132
+ |PA |oneway|nil|
133
+ @pa
134
+ @multipledestinations
135
+ Ejemplos:
136
+ |pais|tipo|cabotage|
137
+ |PA |multipledestinations|nil|
138
+ @pe
139
+ @roundtrip
140
+ Ejemplos:
141
+ |pais|tipo|cabotage|
142
+ |PE |roundtrip|nil|
143
+ @pe
144
+ @oneway
145
+ Ejemplos:
146
+ |pais|tipo|cabotage|
147
+ |PE |oneway|nil|
148
+ @pe
149
+ @multipledestinations
150
+ Ejemplos:
151
+ |pais|tipo|cabotage|
152
+ |PE |multipledestinations|nil|
153
+ @us
154
+ @roundtrip
155
+ Ejemplos:
156
+ |pais|tipo|cabotage|
157
+ |US |roundtrip|nil|
158
+ @us
159
+ @oneway
160
+ Ejemplos:
161
+ |pais|tipo|cabotage|
162
+ |US |oneway|nil|
163
+ @us
164
+ @multipledestinations
165
+ Ejemplos:
166
+ |pais|tipo|cabotage|
167
+ |US |multipledestinations|nil|
168
+ @uy
169
+ @roundtrip
170
+ Ejemplos:
171
+ |pais|tipo|cabotage|
172
+ |UY |roundtrip|nil|
173
+ @uy
174
+ @oneway
175
+ Ejemplos:
176
+ |pais|tipo|cabotage|
177
+ |UY |oneway|nil|
178
+ @uy
179
+ @multipledestinations
180
+ Ejemplos:
181
+ |pais|tipo|cabotage|
182
+ |UY |multipledestinations|nil|
183
+ @ve
184
+ @roundtrip
185
+ Ejemplos:
186
+ |pais|tipo|cabotage|
187
+ |VE |roundtrip|nil|
188
+ @ve
189
+ @oneway
190
+ Ejemplos:
191
+ |pais|tipo|cabotage|
192
+ |VE |oneway|nil|
193
+ @ve
194
+ @multipledestinations
195
+ Ejemplos:
196
+ |pais|tipo|cabotage|
197
+ |VE |multipledestinations|nil|