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