flights_gui_tests 0.0.45 → 0.0.46
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/features/data/sites.yml +2 -0
- data/features/step_definitions/desambiguation_steps.rb +0 -1
- data/features/step_definitions/landing/load_steps.rb +11 -0
- data/features/step_definitions/landing/new_landing_steps.rb +53 -0
- data/features/step_definitions/results/results_steps.rb +12 -2
- data/features/support/env.rb +1 -0
- data/features/support/modules/checkout/datos_de_facturacion.rb +1 -1
- data/features/support/modules/checkout/tarjeta.rb +12 -1
- data/features/support/pages/landing/new_landing_page.rb +48 -3
- data/features/support/pages/landing/search_page.rb +1 -0
- data/features/support/pages/results/search_page.rb +6 -1
- data/features/tests/landing/new_search.feature +44 -0
- data/features/tests/results/search.feature +1 -0
- data/flights_gui_tests.gemspec +1 -1
- data/henry-context.yml +578 -30
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 930b1b26a668a34fadb9952280f70104c3a822a0
|
4
|
+
data.tar.gz: a92b0f8d64bad9685f5b92e3f49bdf416edc6f62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42b5d6634b49b430551c910387e71faded96880ce30d7bf88dc889c156b805e84866bbb88ad0b9ed1d985a87354bc832d93c6f20db018c86fead4d0800b42f91
|
7
|
+
data.tar.gz: 515c457f74b7e090223ef2e72fb72350317bc01c134baf8e070d2e47d57441df68ae558271c3f67e92144e4c5fd269c207a19a815713547676cff75d50ff093c
|
data/features/data/sites.yml
CHANGED
@@ -4,6 +4,7 @@ CL:
|
|
4
4
|
AR:
|
5
5
|
- {code: "BUE", airports: ["EZE", "AEP", "BUE"], name: "Buenos Aires"}
|
6
6
|
- {code: "COR", airports: ["COR"], name: "Cordoba"}
|
7
|
+
- {code: "BRC", airports: ["BRC"], name: "San Carlos de Bariloche"}
|
7
8
|
BR:
|
8
9
|
- {code: "SAO", airports: ["SAO", "GRU", "CGH", "VCP", "CPQ"], name: "San Pablo|Sao Paulo"}
|
9
10
|
- {code: "RIO", airports: ["RIO", "SDU", "GIG"], name: "Rio de Janeiro"}
|
@@ -23,6 +24,7 @@ CO:
|
|
23
24
|
- {code: "BOG", airports: ["BOG"], name: "Bogota"}
|
24
25
|
- {code: "MDE", airports: ["MDE"], name: "Medellin"}
|
25
26
|
- {code: "CLO", airports: ["CLO"], name: "Cali"}
|
27
|
+
- {code: "CTG", airports: ["CTG"], name: "Cartagena de Indias"}
|
26
28
|
CR:
|
27
29
|
- {code: "SJO", airports: ["SJO"], name: "San Jose|Sao Jose"}
|
28
30
|
PA:
|
@@ -9,6 +9,17 @@ Cuando(/^una pagina de landing en "(.*)" del tipo "(.*)"$/) do |pais,tipo|
|
|
9
9
|
@page.elegir_idioma
|
10
10
|
end
|
11
11
|
|
12
|
+
Cuando(/^una landing en "(.*)" con destino "(.*)" del tipo "(.*)"$/) do |pais,ciudad,tipo|
|
13
|
+
Helpers.set_date_language(pais)
|
14
|
+
@page = Landing::NewLandingPage.new($browser)
|
15
|
+
@page.load_page(tipo,pais,$ENV,ciudad)
|
16
|
+
@page.set_cookies
|
17
|
+
puts "URL: #{@page.manage_data.generate_url_landing_search(@page.manage_data.city_from_1.code,ciudad)}"
|
18
|
+
puts "UOW: #{@page.uow}"
|
19
|
+
@ciudad_destino = @page.manage_data.set_to_city(ciudad)
|
20
|
+
@page.elegir_idioma
|
21
|
+
end
|
22
|
+
|
12
23
|
Dado(/^una pagina de landing en "(.*?)" para una busqueda "(.*?)" que desambigue por "(.*?)"$/) do |arg1, arg2, arg3|
|
13
24
|
Helpers.set_date_language(arg1)
|
14
25
|
@page = Results::DesambiguationAirportsPage.new($browser)
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
Entonces(/^ingreso y espero que cargue la nueva pagina de landing$/) do
|
3
|
+
Watir::Wait.until(timeout = 300){@page.titulo_element.present? or @page.titulo_banner_element.present? or @page.itinerario_element.present?}
|
4
|
+
unless @page.titulo_banner_element.present?
|
5
|
+
step "mostrar devtools"
|
6
|
+
step "fuerzo el abztesting por devtool de \"applicationType\" al \"11\""
|
7
|
+
sleep(1)
|
8
|
+
pending("ingreso a resultados directo") if @page.itinerario_element.present?
|
9
|
+
@page.titulo_banner_element.when_visible(timeout=100)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
Cuando(/^elijo la cantidad de dias de la busqueda$/) do
|
14
|
+
@cantidad_dias = @page.dias_viaje_element.options[rand(@page.dias_viaje_element.options.length)]
|
15
|
+
@page.dias_viaje_element.select_value @cantidad_dias.value
|
16
|
+
@page.loader_fare_chart_element.when_not_visible(timeout=10)
|
17
|
+
end
|
18
|
+
|
19
|
+
Y(/^valido los precios mostrados$/) do
|
20
|
+
@page.precio_banner_element.text.gsub(/ /,'').should equal(@page.precio_fare_chart_element.text.gsub(/ /,''))
|
21
|
+
@page.precio_banner_element.text.gsub(/ /,'').should equal(@page.precio_mensaje_fare_chart_element.text.gsub(/ /,''))
|
22
|
+
end
|
23
|
+
|
24
|
+
Y(/^verifico que traiga opciones de busquedas$/) do
|
25
|
+
if @page.warning_element.present?
|
26
|
+
pending("No se encontraron opciones de busquedas. WAR: #{@page.warning_element.text}")
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
Entonces(/^elijo ver ofertas$/) do
|
31
|
+
@page.ver_ofertas_element.click
|
32
|
+
@page.adultos_element.select(2)
|
33
|
+
@page.menores_element.select(1)
|
34
|
+
sleep(0.5)
|
35
|
+
@page.edad_element.select_value(4)
|
36
|
+
@page.buscar_popup_element.click
|
37
|
+
@page = Results::SearchPage.new($browser)
|
38
|
+
end
|
39
|
+
|
40
|
+
Y(/^valido la opcion de fecha exacta$/) do
|
41
|
+
sleep(1)
|
42
|
+
@page.opcion_fecha_exacta_element.set
|
43
|
+
@page.caja_busqueda_element.should visible
|
44
|
+
@page.texto_wizard_fecha_exacta_element.text.no_accents.should equal("Selecciona la fecha exacta del viaje y realize la busqueda")
|
45
|
+
@page.opcion_viajar_element.set
|
46
|
+
sleep(1)
|
47
|
+
end
|
48
|
+
|
49
|
+
Y(/^valido los textos de las nueva landing$/) do
|
50
|
+
@page.texto_wizard_meses_element.text.no_accents.should equal("Selecciona el mes o los meses en los que quisieras viajar")
|
51
|
+
@page.titulo_element.text.no_accents.should equal("Vuelos baratos a #{@page.manage_data.city_to_1.name.no_accents}")
|
52
|
+
@page.titulo_banner_element.text.no_accents.should equal(@page.manage_data.city_to_1.name.no_accents)
|
53
|
+
end
|
@@ -19,7 +19,7 @@ end
|
|
19
19
|
|
20
20
|
Cuando(/^elijo un itinerario y paso a checkout$/) do
|
21
21
|
@page.cargar_itinerarios
|
22
|
-
@index, permitida = @page.sanear_itinerarios(["DL","Y4","4O"])
|
22
|
+
@index, permitida = @page.sanear_itinerarios(["DL","Y4","4O","TK"])
|
23
23
|
pending("No se encontraron vuelos de aerolineas permitidas") unless permitida
|
24
24
|
@itinerario_resultados = @page.elegir_itinerario(@index)
|
25
25
|
end
|
@@ -44,4 +44,14 @@ Entonces(/^recorro y verifico cada itinerario$/) do
|
|
44
44
|
i += 1
|
45
45
|
break if i == 2
|
46
46
|
end
|
47
|
-
end
|
47
|
+
end
|
48
|
+
|
49
|
+
Y(/^verifico el popup de alertas$/) do
|
50
|
+
if @page.boton_alertas_element.present?
|
51
|
+
@page.boton_alertas_element.click
|
52
|
+
@page.popup_alertas_element.when_visible(timeout=20)
|
53
|
+
@page.popup_alertas_element.should visible
|
54
|
+
@page.cerrar_popup_alertas_element.click
|
55
|
+
sleep(1)
|
56
|
+
end
|
57
|
+
end
|
data/features/support/env.rb
CHANGED
@@ -66,6 +66,7 @@ require_relative 'pages/checkout/checkout_page'
|
|
66
66
|
require_relative 'pages/checkout/popup_results_page'
|
67
67
|
require_relative 'pages/thanks/thanks_page'
|
68
68
|
require_relative 'pages/landing/search_page'
|
69
|
+
require_relative 'pages/landing/new_landing_page'
|
69
70
|
|
70
71
|
#carga de asserts personalizados
|
71
72
|
require_relative 'matchers'
|
@@ -29,7 +29,7 @@ module Checkout
|
|
29
29
|
|
30
30
|
def cargar_datos_facturacion
|
31
31
|
if AllPages.site=="AR"
|
32
|
-
option = ["FINAL","INSCR","EXENT","MONOTRIBUTO"][rand(
|
32
|
+
option = ["FINAL","INSCR","EXENT","MONOTRIBUTO"][rand(4)]
|
33
33
|
situacion_fiscal_element.select_value(option)
|
34
34
|
#lleno los campos requeridos
|
35
35
|
cuil_element.set("30643063936")
|
@@ -25,6 +25,7 @@ module Checkout
|
|
25
25
|
text_field(:banco_emisor,:id=>"other-bank-name")
|
26
26
|
text_field(:documento_offline,:id=>"offline-owner-document-number")
|
27
27
|
text_field(:nombre_completo_contacto,:id=>"contact-contact-full-name")
|
28
|
+
text_field(:cuit_empresa,:id=>"owner-fiscal-document-number")
|
28
29
|
|
29
30
|
div(:debito,:class=>"installment-info")
|
30
31
|
div(:warning_deposito,:css=>"#cash-installment .ux-common-message-warning")
|
@@ -83,7 +84,7 @@ module Checkout
|
|
83
84
|
codigo_seguridad_tarjeta_element.set "123"
|
84
85
|
end
|
85
86
|
banco_emisor_element.set "galicia" if banco_emisor_element.present?
|
86
|
-
|
87
|
+
self.elegir_tipo_titular_tarjeta if tipo_titular_tarjeta_element.present?
|
87
88
|
nombre_titular_tarjeta_element.set "Martin qa diez"
|
88
89
|
if documento_titular_tarjeta_element.present?
|
89
90
|
number = case AllPages.site
|
@@ -249,5 +250,15 @@ module Checkout
|
|
249
250
|
end
|
250
251
|
end
|
251
252
|
|
253
|
+
def elegir_tipo_titular_tarjeta
|
254
|
+
tipo = ["PERSON","COMPANY"][rand(2)]
|
255
|
+
tipo_titular_tarjeta_element.select_value tipo
|
256
|
+
if tipo=="COMPANY"
|
257
|
+
puts tipo
|
258
|
+
sleep(0.5)
|
259
|
+
cuit_empresa_element.set "20-32454321-0"
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
252
263
|
end
|
253
264
|
end
|
@@ -1,8 +1,53 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Landing
|
3
|
-
class
|
4
|
-
|
5
|
-
|
3
|
+
class NewLandingPage < AllPages
|
6
4
|
|
5
|
+
radio(:opcion_viajar,:id=>"stay")
|
6
|
+
radio(:opcion_fecha_exacta,:id=>"date")
|
7
|
+
|
8
|
+
select_list(:tipo_viaje,:id=>"searchType")
|
9
|
+
select_list(:dias_viaje,:id=>"stayDays")
|
10
|
+
select_list(:adultos,:css=>"#searchPopup .adultsSelect")
|
11
|
+
select_list(:menores,:css=>"#searchPopup .childsSelect")
|
12
|
+
select_list(:edad,:css=>"#searchPopup .selectAge")
|
13
|
+
|
14
|
+
h1(:titulo,:class=>"landingTitle")
|
15
|
+
|
16
|
+
div(:banner,:class=>"banner-title")
|
17
|
+
div(:precio_fare_chart,:css=>".fare-chart-value-min .fare-chart-value-content")
|
18
|
+
div(:titulo,:class=>"mainTitle")
|
19
|
+
div(:warning,:class=>"ux-common-message ux-common-message-warning fare-chart-loader-text loader-text ")
|
20
|
+
|
21
|
+
link(:ver_mas,:class=>"show-more-text-link show-more-text-less")
|
22
|
+
link(:ver_ofertas,:class=>"wizard-search-button flights-button-yes")
|
23
|
+
link(:buscar_popup,:css=>"#searchPopup .flights-search-button")
|
24
|
+
|
25
|
+
span(:precio_banner,:class=>"banner-title-text-price")
|
26
|
+
span(:descripcion_larga_banner,:class=>"show-more-text-long banner-title-text-suffix")
|
27
|
+
span(:descripcion_corta_banner,:class=>"show-more-text-short banner-title-text-suffix")
|
28
|
+
span(:titulo_banner,:class=>"banner-title-text-title")
|
29
|
+
span(:mensaje_fare_chart,:class=>"wizard-search-message")
|
30
|
+
span(:precio_mensaje_fare_chart,:css=>".wizard-search-message .inline-price")
|
31
|
+
span(:mensaje_no_disponibilidad,:class=>"fare-chart-loader-text loader-text")
|
32
|
+
span(:texto_wizard_fecha_exacta,:css=>".datetype-date .wizard-step-title-text")
|
33
|
+
span(:texto_wizard_meses,:css=>".datetype-stay .wizard-step-title-text")
|
34
|
+
|
35
|
+
element(:caja_busqueda,:form,:class=>"searchbox flights")
|
36
|
+
element(:itinerario, :div, :css=>"#clusters .cluster")
|
37
|
+
|
38
|
+
image(:loader_fare_chart,:class=>"fare-chart-loader loader-img")
|
39
|
+
|
40
|
+
def load_page(tipo,pais,ambiente,ciudad,cabotaje="nil")
|
41
|
+
super(tipo,pais,ambiente,cabotaje)
|
42
|
+
@datos_de_itinerarios = []
|
43
|
+
@browser.goto(self.manage_data.generate_url_landing_search(self.manage_data.city_from_1.code,ciudad))
|
44
|
+
end
|
45
|
+
|
46
|
+
def elegir_tipo_vuelo(tipo)
|
47
|
+
opcion_viajar_element.set
|
48
|
+
tipo_viaje_element.select_value tipo.upcase
|
49
|
+
loader_fare_chart_element.when_not_visible(timeout=10)
|
50
|
+
end
|
51
|
+
|
7
52
|
end
|
8
53
|
end
|
@@ -16,6 +16,7 @@ module Landing
|
|
16
16
|
|
17
17
|
element(:precio_itinerario, :span, :css=>".cluster .fare .price-currency")
|
18
18
|
element(:precio_itinerario_pe, :span, :css=>".cluster .fare .PEN")
|
19
|
+
element(:itinerario, :div, :css=>"#clusters .cluster")
|
19
20
|
|
20
21
|
div(:lista_itinerarios, :id=>"clusters")
|
21
22
|
div(:titulo,:class=>"mainTitle")
|
@@ -48,6 +48,11 @@ module Results
|
|
48
48
|
span(:cerrar_popup_alerta,:css=>"#create-alert-popup .popup-close-button")
|
49
49
|
span(:cerrar_popup_cantidad_visitantes,:css=>"#searches-count-alert-popup .popup-close-button")
|
50
50
|
|
51
|
+
div(:boton_alertas,:id=>"flights-alerts")
|
52
|
+
|
53
|
+
div(:popup_alertas,:id=>"flights-alerts-popup")
|
54
|
+
div(:cerrar_popup_alertas,:class=>"commonSprite closeBlueIcon nibbler-close close-tooltip")
|
55
|
+
|
51
56
|
def load_page(tipo,pais,ambiente,cabotaje="nil",params={})
|
52
57
|
super(tipo,pais,ambiente,cabotaje,params)
|
53
58
|
@datos_de_itinerarios = []
|
@@ -106,7 +111,7 @@ module Results
|
|
106
111
|
end
|
107
112
|
|
108
113
|
def datos_itinerario()
|
109
|
-
index, permitida = sanear_itinerarios(["DL","Y4","4O"])
|
114
|
+
index, permitida = sanear_itinerarios(["DL","Y4","4O","TK"])
|
110
115
|
@datos_de_itinerarios[index]
|
111
116
|
end
|
112
117
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
#language: es
|
2
|
+
@landing
|
3
|
+
Característica: landing.new_search
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de landing, se elige un itinerario y se verifica su pasaje a resultados/checkout
|
5
|
+
|
6
|
+
@new_search
|
7
|
+
Esquema del escenario: Smoke TEST
|
8
|
+
Dado una landing en "<pais>" con destino "<destino>" del tipo "<tipo>"
|
9
|
+
Entonces verifico que la pagina no rompa
|
10
|
+
Entonces ingreso y espero que cargue la nueva pagina de landing
|
11
|
+
Cuando elijo el tipo de vuelo "<tipo>"
|
12
|
+
Entonces verifico que la pagina no rompa
|
13
|
+
Y verifico que traiga opciones de busquedas
|
14
|
+
Y verifico que la url sea la correcta
|
15
|
+
Y valido los precios mostrados
|
16
|
+
Y valido los textos de las nueva landing
|
17
|
+
Y valido la opcion de fecha exacta
|
18
|
+
Cuando si es ida y vuelta, elijo la cantidad de dias de la busqueda
|
19
|
+
Y si es ida y vuelta, verifico que traiga opciones de busquedas
|
20
|
+
Y si es ida y vuelta, valido los precios mostrados
|
21
|
+
Entonces elijo ver ofertas
|
22
|
+
Cuando espero que termine de cargar la pagina de resultados
|
23
|
+
Y verifico que traiga resultados
|
24
|
+
|
25
|
+
@ar
|
26
|
+
@roundtrip
|
27
|
+
Ejemplos:
|
28
|
+
|pais|tipo|destino|
|
29
|
+
|AR |roundtrip|RIO|
|
30
|
+
@ar
|
31
|
+
@oneway
|
32
|
+
Ejemplos:
|
33
|
+
|pais|tipo|destino|
|
34
|
+
|AR |oneway|BRC|
|
35
|
+
@co
|
36
|
+
@roundtrip
|
37
|
+
Ejemplos:
|
38
|
+
|pais|tipo|destino|
|
39
|
+
|CO |roundtrip|CTG|
|
40
|
+
@co
|
41
|
+
@oneway
|
42
|
+
Ejemplos:
|
43
|
+
|pais|tipo|destino|
|
44
|
+
|CO |oneway|MIA|
|
@@ -17,6 +17,7 @@ Característica: results.search
|
|
17
17
|
Y verifico el tag de groovinads
|
18
18
|
Y verifico el logger en resultado de fgui
|
19
19
|
Y verifico el tag de canonical
|
20
|
+
Y verifico el popup de alertas
|
20
21
|
Y si el site es "AR", verifico el tag de remarketing de facebook
|
21
22
|
Y si el site es "MX|CO|BR", verifico el tag de facebook
|
22
23
|
Y verifico el pixel de e-planning
|
data/flights_gui_tests.gemspec
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
|
17
17
|
|
18
|
-
gem.version = '0.0.
|
18
|
+
gem.version = '0.0.46' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
|
19
19
|
|
20
20
|
gem.add_dependency('henry-container', '>= 0.1.39')
|
21
21
|
gem.add_dependency('page-object')
|
data/henry-context.yml
CHANGED
@@ -2968,36 +2968,6 @@ tasks:
|
|
2968
2968
|
recipients:
|
2969
2969
|
- estebanldh@gmail.com
|
2970
2970
|
- nsimean@despegar.com
|
2971
|
-
- name: results.new_filters.ar
|
2972
|
-
class_name: Henry::Task::CucumberTask
|
2973
|
-
options:
|
2974
|
-
tags:
|
2975
|
-
- results
|
2976
|
-
- new_filters
|
2977
|
-
- ar
|
2978
|
-
expand: true
|
2979
|
-
no-source: true
|
2980
|
-
reports:
|
2981
|
-
- format: html
|
2982
|
-
name: ${DATE}_${TASK_NAME}.html
|
2983
|
-
recipients:
|
2984
|
-
- estebanldh@gmail.com
|
2985
|
-
- nsimean@despegar.com
|
2986
|
-
- name: results.new_filters.br
|
2987
|
-
class_name: Henry::Task::CucumberTask
|
2988
|
-
options:
|
2989
|
-
tags:
|
2990
|
-
- results
|
2991
|
-
- new_filters
|
2992
|
-
- br
|
2993
|
-
expand: true
|
2994
|
-
no-source: true
|
2995
|
-
reports:
|
2996
|
-
- format: html
|
2997
|
-
name: ${DATE}_${TASK_NAME}.html
|
2998
|
-
recipients:
|
2999
|
-
- estebanldh@gmail.com
|
3000
|
-
- nsimean@despegar.com
|
3001
2971
|
- name: results.new_filters.mx
|
3002
2972
|
class_name: Henry::Task::CucumberTask
|
3003
2973
|
options:
|
@@ -7835,6 +7805,584 @@ tasks:
|
|
7835
7805
|
recipients:
|
7836
7806
|
- estebanldh@gmail.com
|
7837
7807
|
- nsimean@despegar.com
|
7808
|
+
- name: landing.new_search
|
7809
|
+
class_name: Henry::Task::CucumberTask
|
7810
|
+
options:
|
7811
|
+
tags:
|
7812
|
+
- landing
|
7813
|
+
- new_search
|
7814
|
+
expand: true
|
7815
|
+
no-source: true
|
7816
|
+
reports:
|
7817
|
+
- format: html
|
7818
|
+
name: ${DATE}_${TASK_NAME}.html
|
7819
|
+
recipients:
|
7820
|
+
- estebanldh@gmail.com
|
7821
|
+
- nsimean@despegar.com
|
7822
|
+
- name: landing.new_search.ar
|
7823
|
+
class_name: Henry::Task::CucumberTask
|
7824
|
+
options:
|
7825
|
+
tags:
|
7826
|
+
- landing
|
7827
|
+
- new_search
|
7828
|
+
- ar
|
7829
|
+
expand: true
|
7830
|
+
no-source: true
|
7831
|
+
reports:
|
7832
|
+
- format: html
|
7833
|
+
name: ${DATE}_${TASK_NAME}.html
|
7834
|
+
recipients:
|
7835
|
+
- estebanldh@gmail.com
|
7836
|
+
- nsimean@despegar.com
|
7837
|
+
- name: landing.new_search.ar.roundtrip
|
7838
|
+
class_name: Henry::Task::CucumberTask
|
7839
|
+
options:
|
7840
|
+
tags:
|
7841
|
+
- landing
|
7842
|
+
- new_search
|
7843
|
+
- ar
|
7844
|
+
- roundtrip
|
7845
|
+
expand: true
|
7846
|
+
no-source: true
|
7847
|
+
reports:
|
7848
|
+
- format: html
|
7849
|
+
name: ${DATE}_${TASK_NAME}.html
|
7850
|
+
recipients:
|
7851
|
+
- estebanldh@gmail.com
|
7852
|
+
- nsimean@despegar.com
|
7853
|
+
- name: landing.new_search.ar.oneway
|
7854
|
+
class_name: Henry::Task::CucumberTask
|
7855
|
+
options:
|
7856
|
+
tags:
|
7857
|
+
- landing
|
7858
|
+
- new_search
|
7859
|
+
- ar
|
7860
|
+
- oneway
|
7861
|
+
expand: true
|
7862
|
+
no-source: true
|
7863
|
+
reports:
|
7864
|
+
- format: html
|
7865
|
+
name: ${DATE}_${TASK_NAME}.html
|
7866
|
+
recipients:
|
7867
|
+
- estebanldh@gmail.com
|
7868
|
+
- nsimean@despegar.com
|
7869
|
+
- name: landing.new_search.br
|
7870
|
+
class_name: Henry::Task::CucumberTask
|
7871
|
+
options:
|
7872
|
+
tags:
|
7873
|
+
- landing
|
7874
|
+
- new_search
|
7875
|
+
- br
|
7876
|
+
expand: true
|
7877
|
+
no-source: true
|
7878
|
+
reports:
|
7879
|
+
- format: html
|
7880
|
+
name: ${DATE}_${TASK_NAME}.html
|
7881
|
+
recipients:
|
7882
|
+
- estebanldh@gmail.com
|
7883
|
+
- nsimean@despegar.com
|
7884
|
+
- name: landing.new_search.br.roundtrip
|
7885
|
+
class_name: Henry::Task::CucumberTask
|
7886
|
+
options:
|
7887
|
+
tags:
|
7888
|
+
- landing
|
7889
|
+
- new_search
|
7890
|
+
- br
|
7891
|
+
- roundtrip
|
7892
|
+
expand: true
|
7893
|
+
no-source: true
|
7894
|
+
reports:
|
7895
|
+
- format: html
|
7896
|
+
name: ${DATE}_${TASK_NAME}.html
|
7897
|
+
recipients:
|
7898
|
+
- estebanldh@gmail.com
|
7899
|
+
- nsimean@despegar.com
|
7900
|
+
- name: landing.new_search.br.oneway
|
7901
|
+
class_name: Henry::Task::CucumberTask
|
7902
|
+
options:
|
7903
|
+
tags:
|
7904
|
+
- landing
|
7905
|
+
- new_search
|
7906
|
+
- br
|
7907
|
+
- oneway
|
7908
|
+
expand: true
|
7909
|
+
no-source: true
|
7910
|
+
reports:
|
7911
|
+
- format: html
|
7912
|
+
name: ${DATE}_${TASK_NAME}.html
|
7913
|
+
recipients:
|
7914
|
+
- estebanldh@gmail.com
|
7915
|
+
- nsimean@despegar.com
|
7916
|
+
- name: landing.new_search.co
|
7917
|
+
class_name: Henry::Task::CucumberTask
|
7918
|
+
options:
|
7919
|
+
tags:
|
7920
|
+
- landing
|
7921
|
+
- new_search
|
7922
|
+
- co
|
7923
|
+
expand: true
|
7924
|
+
no-source: true
|
7925
|
+
reports:
|
7926
|
+
- format: html
|
7927
|
+
name: ${DATE}_${TASK_NAME}.html
|
7928
|
+
recipients:
|
7929
|
+
- estebanldh@gmail.com
|
7930
|
+
- nsimean@despegar.com
|
7931
|
+
- name: landing.new_search.co.roundtrip
|
7932
|
+
class_name: Henry::Task::CucumberTask
|
7933
|
+
options:
|
7934
|
+
tags:
|
7935
|
+
- landing
|
7936
|
+
- new_search
|
7937
|
+
- co
|
7938
|
+
- roundtrip
|
7939
|
+
expand: true
|
7940
|
+
no-source: true
|
7941
|
+
reports:
|
7942
|
+
- format: html
|
7943
|
+
name: ${DATE}_${TASK_NAME}.html
|
7944
|
+
recipients:
|
7945
|
+
- estebanldh@gmail.com
|
7946
|
+
- nsimean@despegar.com
|
7947
|
+
- name: landing.new_search.co.oneway
|
7948
|
+
class_name: Henry::Task::CucumberTask
|
7949
|
+
options:
|
7950
|
+
tags:
|
7951
|
+
- landing
|
7952
|
+
- new_search
|
7953
|
+
- co
|
7954
|
+
- oneway
|
7955
|
+
expand: true
|
7956
|
+
no-source: true
|
7957
|
+
reports:
|
7958
|
+
- format: html
|
7959
|
+
name: ${DATE}_${TASK_NAME}.html
|
7960
|
+
recipients:
|
7961
|
+
- estebanldh@gmail.com
|
7962
|
+
- nsimean@despegar.com
|
7963
|
+
- name: landing.new_search.cl
|
7964
|
+
class_name: Henry::Task::CucumberTask
|
7965
|
+
options:
|
7966
|
+
tags:
|
7967
|
+
- landing
|
7968
|
+
- new_search
|
7969
|
+
- cl
|
7970
|
+
expand: true
|
7971
|
+
no-source: true
|
7972
|
+
reports:
|
7973
|
+
- format: html
|
7974
|
+
name: ${DATE}_${TASK_NAME}.html
|
7975
|
+
recipients:
|
7976
|
+
- estebanldh@gmail.com
|
7977
|
+
- nsimean@despegar.com
|
7978
|
+
- name: landing.new_search.cl.roundtrip
|
7979
|
+
class_name: Henry::Task::CucumberTask
|
7980
|
+
options:
|
7981
|
+
tags:
|
7982
|
+
- landing
|
7983
|
+
- new_search
|
7984
|
+
- cl
|
7985
|
+
- roundtrip
|
7986
|
+
expand: true
|
7987
|
+
no-source: true
|
7988
|
+
reports:
|
7989
|
+
- format: html
|
7990
|
+
name: ${DATE}_${TASK_NAME}.html
|
7991
|
+
recipients:
|
7992
|
+
- estebanldh@gmail.com
|
7993
|
+
- nsimean@despegar.com
|
7994
|
+
- name: landing.new_search.cl.oneway
|
7995
|
+
class_name: Henry::Task::CucumberTask
|
7996
|
+
options:
|
7997
|
+
tags:
|
7998
|
+
- landing
|
7999
|
+
- new_search
|
8000
|
+
- cl
|
8001
|
+
- oneway
|
8002
|
+
expand: true
|
8003
|
+
no-source: true
|
8004
|
+
reports:
|
8005
|
+
- format: html
|
8006
|
+
name: ${DATE}_${TASK_NAME}.html
|
8007
|
+
recipients:
|
8008
|
+
- estebanldh@gmail.com
|
8009
|
+
- nsimean@despegar.com
|
8010
|
+
- name: landing.new_search.cr
|
8011
|
+
class_name: Henry::Task::CucumberTask
|
8012
|
+
options:
|
8013
|
+
tags:
|
8014
|
+
- landing
|
8015
|
+
- new_search
|
8016
|
+
- cr
|
8017
|
+
expand: true
|
8018
|
+
no-source: true
|
8019
|
+
reports:
|
8020
|
+
- format: html
|
8021
|
+
name: ${DATE}_${TASK_NAME}.html
|
8022
|
+
recipients:
|
8023
|
+
- estebanldh@gmail.com
|
8024
|
+
- nsimean@despegar.com
|
8025
|
+
- name: landing.new_search.cr.roundtrip
|
8026
|
+
class_name: Henry::Task::CucumberTask
|
8027
|
+
options:
|
8028
|
+
tags:
|
8029
|
+
- landing
|
8030
|
+
- new_search
|
8031
|
+
- cr
|
8032
|
+
- roundtrip
|
8033
|
+
expand: true
|
8034
|
+
no-source: true
|
8035
|
+
reports:
|
8036
|
+
- format: html
|
8037
|
+
name: ${DATE}_${TASK_NAME}.html
|
8038
|
+
recipients:
|
8039
|
+
- estebanldh@gmail.com
|
8040
|
+
- nsimean@despegar.com
|
8041
|
+
- name: landing.new_search.cr.oneway
|
8042
|
+
class_name: Henry::Task::CucumberTask
|
8043
|
+
options:
|
8044
|
+
tags:
|
8045
|
+
- landing
|
8046
|
+
- new_search
|
8047
|
+
- cr
|
8048
|
+
- oneway
|
8049
|
+
expand: true
|
8050
|
+
no-source: true
|
8051
|
+
reports:
|
8052
|
+
- format: html
|
8053
|
+
name: ${DATE}_${TASK_NAME}.html
|
8054
|
+
recipients:
|
8055
|
+
- estebanldh@gmail.com
|
8056
|
+
- nsimean@despegar.com
|
8057
|
+
- name: landing.new_search.ec
|
8058
|
+
class_name: Henry::Task::CucumberTask
|
8059
|
+
options:
|
8060
|
+
tags:
|
8061
|
+
- landing
|
8062
|
+
- new_search
|
8063
|
+
- ec
|
8064
|
+
expand: true
|
8065
|
+
no-source: true
|
8066
|
+
reports:
|
8067
|
+
- format: html
|
8068
|
+
name: ${DATE}_${TASK_NAME}.html
|
8069
|
+
recipients:
|
8070
|
+
- estebanldh@gmail.com
|
8071
|
+
- nsimean@despegar.com
|
8072
|
+
- name: landing.new_search.ec.roundtrip
|
8073
|
+
class_name: Henry::Task::CucumberTask
|
8074
|
+
options:
|
8075
|
+
tags:
|
8076
|
+
- landing
|
8077
|
+
- new_search
|
8078
|
+
- ec
|
8079
|
+
- roundtrip
|
8080
|
+
expand: true
|
8081
|
+
no-source: true
|
8082
|
+
reports:
|
8083
|
+
- format: html
|
8084
|
+
name: ${DATE}_${TASK_NAME}.html
|
8085
|
+
recipients:
|
8086
|
+
- estebanldh@gmail.com
|
8087
|
+
- nsimean@despegar.com
|
8088
|
+
- name: landing.new_search.ec.oneway
|
8089
|
+
class_name: Henry::Task::CucumberTask
|
8090
|
+
options:
|
8091
|
+
tags:
|
8092
|
+
- landing
|
8093
|
+
- new_search
|
8094
|
+
- ec
|
8095
|
+
- oneway
|
8096
|
+
expand: true
|
8097
|
+
no-source: true
|
8098
|
+
reports:
|
8099
|
+
- format: html
|
8100
|
+
name: ${DATE}_${TASK_NAME}.html
|
8101
|
+
recipients:
|
8102
|
+
- estebanldh@gmail.com
|
8103
|
+
- nsimean@despegar.com
|
8104
|
+
- name: landing.new_search.mx
|
8105
|
+
class_name: Henry::Task::CucumberTask
|
8106
|
+
options:
|
8107
|
+
tags:
|
8108
|
+
- landing
|
8109
|
+
- new_search
|
8110
|
+
- mx
|
8111
|
+
expand: true
|
8112
|
+
no-source: true
|
8113
|
+
reports:
|
8114
|
+
- format: html
|
8115
|
+
name: ${DATE}_${TASK_NAME}.html
|
8116
|
+
recipients:
|
8117
|
+
- estebanldh@gmail.com
|
8118
|
+
- nsimean@despegar.com
|
8119
|
+
- name: landing.new_search.mx.roundtrip
|
8120
|
+
class_name: Henry::Task::CucumberTask
|
8121
|
+
options:
|
8122
|
+
tags:
|
8123
|
+
- landing
|
8124
|
+
- new_search
|
8125
|
+
- mx
|
8126
|
+
- roundtrip
|
8127
|
+
expand: true
|
8128
|
+
no-source: true
|
8129
|
+
reports:
|
8130
|
+
- format: html
|
8131
|
+
name: ${DATE}_${TASK_NAME}.html
|
8132
|
+
recipients:
|
8133
|
+
- estebanldh@gmail.com
|
8134
|
+
- nsimean@despegar.com
|
8135
|
+
- name: landing.new_search.mx.oneway
|
8136
|
+
class_name: Henry::Task::CucumberTask
|
8137
|
+
options:
|
8138
|
+
tags:
|
8139
|
+
- landing
|
8140
|
+
- new_search
|
8141
|
+
- mx
|
8142
|
+
- oneway
|
8143
|
+
expand: true
|
8144
|
+
no-source: true
|
8145
|
+
reports:
|
8146
|
+
- format: html
|
8147
|
+
name: ${DATE}_${TASK_NAME}.html
|
8148
|
+
recipients:
|
8149
|
+
- estebanldh@gmail.com
|
8150
|
+
- nsimean@despegar.com
|
8151
|
+
- name: landing.new_search.pa
|
8152
|
+
class_name: Henry::Task::CucumberTask
|
8153
|
+
options:
|
8154
|
+
tags:
|
8155
|
+
- landing
|
8156
|
+
- new_search
|
8157
|
+
- pa
|
8158
|
+
expand: true
|
8159
|
+
no-source: true
|
8160
|
+
reports:
|
8161
|
+
- format: html
|
8162
|
+
name: ${DATE}_${TASK_NAME}.html
|
8163
|
+
recipients:
|
8164
|
+
- estebanldh@gmail.com
|
8165
|
+
- nsimean@despegar.com
|
8166
|
+
- name: landing.new_search.pa.roundtrip
|
8167
|
+
class_name: Henry::Task::CucumberTask
|
8168
|
+
options:
|
8169
|
+
tags:
|
8170
|
+
- landing
|
8171
|
+
- new_search
|
8172
|
+
- pa
|
8173
|
+
- roundtrip
|
8174
|
+
expand: true
|
8175
|
+
no-source: true
|
8176
|
+
reports:
|
8177
|
+
- format: html
|
8178
|
+
name: ${DATE}_${TASK_NAME}.html
|
8179
|
+
recipients:
|
8180
|
+
- estebanldh@gmail.com
|
8181
|
+
- nsimean@despegar.com
|
8182
|
+
- name: landing.new_search.pa.oneway
|
8183
|
+
class_name: Henry::Task::CucumberTask
|
8184
|
+
options:
|
8185
|
+
tags:
|
8186
|
+
- landing
|
8187
|
+
- new_search
|
8188
|
+
- pa
|
8189
|
+
- oneway
|
8190
|
+
expand: true
|
8191
|
+
no-source: true
|
8192
|
+
reports:
|
8193
|
+
- format: html
|
8194
|
+
name: ${DATE}_${TASK_NAME}.html
|
8195
|
+
recipients:
|
8196
|
+
- estebanldh@gmail.com
|
8197
|
+
- nsimean@despegar.com
|
8198
|
+
- name: landing.new_search.pe
|
8199
|
+
class_name: Henry::Task::CucumberTask
|
8200
|
+
options:
|
8201
|
+
tags:
|
8202
|
+
- landing
|
8203
|
+
- new_search
|
8204
|
+
- pe
|
8205
|
+
expand: true
|
8206
|
+
no-source: true
|
8207
|
+
reports:
|
8208
|
+
- format: html
|
8209
|
+
name: ${DATE}_${TASK_NAME}.html
|
8210
|
+
recipients:
|
8211
|
+
- estebanldh@gmail.com
|
8212
|
+
- nsimean@despegar.com
|
8213
|
+
- name: landing.new_search.pe.roundtrip
|
8214
|
+
class_name: Henry::Task::CucumberTask
|
8215
|
+
options:
|
8216
|
+
tags:
|
8217
|
+
- landing
|
8218
|
+
- new_search
|
8219
|
+
- pe
|
8220
|
+
- roundtrip
|
8221
|
+
expand: true
|
8222
|
+
no-source: true
|
8223
|
+
reports:
|
8224
|
+
- format: html
|
8225
|
+
name: ${DATE}_${TASK_NAME}.html
|
8226
|
+
recipients:
|
8227
|
+
- estebanldh@gmail.com
|
8228
|
+
- nsimean@despegar.com
|
8229
|
+
- name: landing.new_search.pe.oneway
|
8230
|
+
class_name: Henry::Task::CucumberTask
|
8231
|
+
options:
|
8232
|
+
tags:
|
8233
|
+
- landing
|
8234
|
+
- new_search
|
8235
|
+
- pe
|
8236
|
+
- oneway
|
8237
|
+
expand: true
|
8238
|
+
no-source: true
|
8239
|
+
reports:
|
8240
|
+
- format: html
|
8241
|
+
name: ${DATE}_${TASK_NAME}.html
|
8242
|
+
recipients:
|
8243
|
+
- estebanldh@gmail.com
|
8244
|
+
- nsimean@despegar.com
|
8245
|
+
- name: landing.new_search.us
|
8246
|
+
class_name: Henry::Task::CucumberTask
|
8247
|
+
options:
|
8248
|
+
tags:
|
8249
|
+
- landing
|
8250
|
+
- new_search
|
8251
|
+
- us
|
8252
|
+
expand: true
|
8253
|
+
no-source: true
|
8254
|
+
reports:
|
8255
|
+
- format: html
|
8256
|
+
name: ${DATE}_${TASK_NAME}.html
|
8257
|
+
recipients:
|
8258
|
+
- estebanldh@gmail.com
|
8259
|
+
- nsimean@despegar.com
|
8260
|
+
- name: landing.new_search.us.roundtrip
|
8261
|
+
class_name: Henry::Task::CucumberTask
|
8262
|
+
options:
|
8263
|
+
tags:
|
8264
|
+
- landing
|
8265
|
+
- new_search
|
8266
|
+
- us
|
8267
|
+
- roundtrip
|
8268
|
+
expand: true
|
8269
|
+
no-source: true
|
8270
|
+
reports:
|
8271
|
+
- format: html
|
8272
|
+
name: ${DATE}_${TASK_NAME}.html
|
8273
|
+
recipients:
|
8274
|
+
- estebanldh@gmail.com
|
8275
|
+
- nsimean@despegar.com
|
8276
|
+
- name: landing.new_search.us.oneway
|
8277
|
+
class_name: Henry::Task::CucumberTask
|
8278
|
+
options:
|
8279
|
+
tags:
|
8280
|
+
- landing
|
8281
|
+
- new_search
|
8282
|
+
- us
|
8283
|
+
- oneway
|
8284
|
+
expand: true
|
8285
|
+
no-source: true
|
8286
|
+
reports:
|
8287
|
+
- format: html
|
8288
|
+
name: ${DATE}_${TASK_NAME}.html
|
8289
|
+
recipients:
|
8290
|
+
- estebanldh@gmail.com
|
8291
|
+
- nsimean@despegar.com
|
8292
|
+
- name: landing.new_search.uy
|
8293
|
+
class_name: Henry::Task::CucumberTask
|
8294
|
+
options:
|
8295
|
+
tags:
|
8296
|
+
- landing
|
8297
|
+
- new_search
|
8298
|
+
- uy
|
8299
|
+
expand: true
|
8300
|
+
no-source: true
|
8301
|
+
reports:
|
8302
|
+
- format: html
|
8303
|
+
name: ${DATE}_${TASK_NAME}.html
|
8304
|
+
recipients:
|
8305
|
+
- estebanldh@gmail.com
|
8306
|
+
- nsimean@despegar.com
|
8307
|
+
- name: landing.new_search.uy.roundtrip
|
8308
|
+
class_name: Henry::Task::CucumberTask
|
8309
|
+
options:
|
8310
|
+
tags:
|
8311
|
+
- landing
|
8312
|
+
- new_search
|
8313
|
+
- uy
|
8314
|
+
- roundtrip
|
8315
|
+
expand: true
|
8316
|
+
no-source: true
|
8317
|
+
reports:
|
8318
|
+
- format: html
|
8319
|
+
name: ${DATE}_${TASK_NAME}.html
|
8320
|
+
recipients:
|
8321
|
+
- estebanldh@gmail.com
|
8322
|
+
- nsimean@despegar.com
|
8323
|
+
- name: landing.new_search.uy.oneway
|
8324
|
+
class_name: Henry::Task::CucumberTask
|
8325
|
+
options:
|
8326
|
+
tags:
|
8327
|
+
- landing
|
8328
|
+
- new_search
|
8329
|
+
- uy
|
8330
|
+
- oneway
|
8331
|
+
expand: true
|
8332
|
+
no-source: true
|
8333
|
+
reports:
|
8334
|
+
- format: html
|
8335
|
+
name: ${DATE}_${TASK_NAME}.html
|
8336
|
+
recipients:
|
8337
|
+
- estebanldh@gmail.com
|
8338
|
+
- nsimean@despegar.com
|
8339
|
+
- name: landing.new_search.ve
|
8340
|
+
class_name: Henry::Task::CucumberTask
|
8341
|
+
options:
|
8342
|
+
tags:
|
8343
|
+
- landing
|
8344
|
+
- new_search
|
8345
|
+
- ve
|
8346
|
+
expand: true
|
8347
|
+
no-source: true
|
8348
|
+
reports:
|
8349
|
+
- format: html
|
8350
|
+
name: ${DATE}_${TASK_NAME}.html
|
8351
|
+
recipients:
|
8352
|
+
- estebanldh@gmail.com
|
8353
|
+
- nsimean@despegar.com
|
8354
|
+
- name: landing.new_search.ve.roundtrip
|
8355
|
+
class_name: Henry::Task::CucumberTask
|
8356
|
+
options:
|
8357
|
+
tags:
|
8358
|
+
- landing
|
8359
|
+
- new_search
|
8360
|
+
- ve
|
8361
|
+
- roundtrip
|
8362
|
+
expand: true
|
8363
|
+
no-source: true
|
8364
|
+
reports:
|
8365
|
+
- format: html
|
8366
|
+
name: ${DATE}_${TASK_NAME}.html
|
8367
|
+
recipients:
|
8368
|
+
- estebanldh@gmail.com
|
8369
|
+
- nsimean@despegar.com
|
8370
|
+
- name: landing.new_search.ve.oneway
|
8371
|
+
class_name: Henry::Task::CucumberTask
|
8372
|
+
options:
|
8373
|
+
tags:
|
8374
|
+
- landing
|
8375
|
+
- new_search
|
8376
|
+
- ve
|
8377
|
+
- oneway
|
8378
|
+
expand: true
|
8379
|
+
no-source: true
|
8380
|
+
reports:
|
8381
|
+
- format: html
|
8382
|
+
name: ${DATE}_${TASK_NAME}.html
|
8383
|
+
recipients:
|
8384
|
+
- estebanldh@gmail.com
|
8385
|
+
- nsimean@despegar.com
|
7838
8386
|
- name: landing.tags
|
7839
8387
|
class_name: Henry::Task::CucumberTask
|
7840
8388
|
options:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flights_gui_tests
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.46
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lgonzalez,lsimean
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: henry-container
|
@@ -211,6 +211,7 @@ files:
|
|
211
211
|
- features/step_definitions/landing/load_steps.rb
|
212
212
|
- features/step_definitions/landing/long_tail_steps.rb
|
213
213
|
- features/step_definitions/landing/negative_steps.rb
|
214
|
+
- features/step_definitions/landing/new_landing_steps.rb
|
214
215
|
- features/step_definitions/page_steps.rb
|
215
216
|
- features/step_definitions/results/basefare_steps.rb
|
216
217
|
- features/step_definitions/results/errors_steps.rb
|
@@ -300,6 +301,7 @@ files:
|
|
300
301
|
- features/tests/landing/long_tail.feature
|
301
302
|
- features/tests/landing/matrix.feature
|
302
303
|
- features/tests/landing/negative.feature
|
304
|
+
- features/tests/landing/new_search.feature
|
303
305
|
- features/tests/landing/orders.feature
|
304
306
|
- features/tests/landing/pagination.feature
|
305
307
|
- features/tests/landing/reviews.feature
|