flights_gui_henry_tests 2.9.4 → 2.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/features/step_definitions/checkout/checkout_steps.rb +0 -3
- data/features/step_definitions/checkout/error_messages.rb +0 -1
- data/features/step_definitions/checkout/fast_checkout.rb +40 -0
- data/features/step_definitions/search/flight_gui_steps.rb +5 -2
- data/features/support/lib/helpers/browser.rb +2 -2
- data/features/tests/checkout/fast_checkout.feature +99 -0
- data/features/tests/search/wish_list.feature +0 -10
- data/flights_gui_henry_tests.gemspec +1 -1
- data/henry-context.yml +266 -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: 2c74f2e3e8aee187ae8d1ea973ac1ebf3845248b
|
|
4
|
+
data.tar.gz: a43acb51aa6a8bc89f9fd730e9b388b019424aef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a13d9f6bbe4173ffa196373ea4058c34af3233a732be6d95f34caa430df4f7e34d3ac6f1e4a525466141bfba48c95fb2bcfce389ad64bac8594583acde8d9cce
|
|
7
|
+
data.tar.gz: 56a69e207d90ed7cfdbbff7341877cc3fa0c5379fdc96c02f1c385417c58708f1ee573434df074469ed9e8c5f40d8c79bd3403aec71813aa26a8e231c2cbfceb
|
|
@@ -22,8 +22,6 @@ When /^verifico que los precios de las cuotas se muestran correctamente$/ do
|
|
|
22
22
|
when /(.*)CREDIT(.*)$/ then validar_cuota_sin_intereses(total_1,total_2)
|
|
23
23
|
end
|
|
24
24
|
keys.uniq.length.should equal(keys.length)
|
|
25
|
-
# doc=Hpricot.parse(BROWSER.div(:id,'card-group').html)
|
|
26
|
-
# (doc/'select#card-brand option').collect{|option| option.attributes['value']}.sort.should equal(keys.sort)
|
|
27
25
|
end
|
|
28
26
|
else
|
|
29
27
|
interes = true
|
|
@@ -90,7 +88,6 @@ And /^Verifico el tag de remarketing de facebook$/ do
|
|
|
90
88
|
tag_script.first.inner_text.should match("connect.facebook.net\/en\_US\/fp.js")
|
|
91
89
|
tag_noscript = (doc/"noscript").select{|script| script.inner_html.match(/facebook/)}[0]
|
|
92
90
|
tag_noscript.should be_true
|
|
93
|
-
#(doc/"script[@src='http://www.googleadservices.com/pagead/conversion.js']").should_not is_empty
|
|
94
91
|
end
|
|
95
92
|
end
|
|
96
93
|
|
|
@@ -82,7 +82,6 @@ When /^Verifico que se desplieguen las alertas de campos con datos invalidos$/ d
|
|
|
82
82
|
container.select_list(:id,'card-expiration-month').select "1"
|
|
83
83
|
container.select_list(:id,'card-expiration-year').select (Date.today.year).to_s
|
|
84
84
|
BROWSER.link(:id,'submit').click
|
|
85
|
-
#container.span(:id,"expiration-date-invalid_date_min").should visible
|
|
86
85
|
container.text_field(:id,'owner-name').set("diegoqaromero")
|
|
87
86
|
BROWSER.link(:id,'submit').click
|
|
88
87
|
container.span(:id,"owner-name-invalid_card_owner_name").should visible
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
|
2
|
+
Cuando(/^me logueo como usuario "(.*?)" y pass "(.*?)"$/) do |arg1, arg2|
|
|
3
|
+
BROWSER.div(:id,'checkout-login').should visible("login de usuario")
|
|
4
|
+
if BROWSER.div(:id,'checkout-login').link(:class,'log-out').present?
|
|
5
|
+
BROWSER.div(:id,'checkout-login').link(:class,'log-out').click
|
|
6
|
+
step "Verifico que ingrese al checkout"
|
|
7
|
+
end
|
|
8
|
+
BROWSER.div(:id,'checkout-login').link(:class,'log-in').click
|
|
9
|
+
step "Me logueo con usuario \"#{arg1}\" y pass \"#{arg2}\""
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
Entonces(/^verifico que se haya logueado correctamente$/) do
|
|
13
|
+
BROWSER.div(:id,'checkout-login').p(:class,'message logged-in').text.no_accents.should match('Hola, Diego QA ROmero|Ola, Diego QA ROmero|Hello, Diego QA ROmero')
|
|
14
|
+
BROWSER.div(:id,'checkout-login').link(:class,'log-out').should visible("link de deslogueo")
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
Entonces(/^verifico que se muestren las tarjetas guardadas$/) do
|
|
18
|
+
BROWSER.div(:id,'paymentDefinition.storedCard').should visible("store de tarjetas guardadas")
|
|
19
|
+
if BROWSER.div(:id,'paymentDefinition.storedCard').li(:class,'stored-card hidden')
|
|
20
|
+
BROWSER.div(:id,'paymentDefinition.storedCard').link(:class,'display-cards').click
|
|
21
|
+
sleep(1)
|
|
22
|
+
end
|
|
23
|
+
i = 0
|
|
24
|
+
BROWSER.div(:id,'paymentDefinition.storedCard').uls(:class,'card-container').each do |ul|
|
|
25
|
+
ul.radio(:class,'radio').click
|
|
26
|
+
sleep(0.5)
|
|
27
|
+
ul.text_field(:id,"stored-card-#{i}-security-code").should visible("codigo de seguridad")
|
|
28
|
+
i = i + 1
|
|
29
|
+
end
|
|
30
|
+
BROWSER.div(:class,'new-card-container').should visible("opcion nueva tarjeta")
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
Entonces(/^verifico que se muestren los usuarios guardadas$/) do
|
|
34
|
+
#TODO
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
Entonces(/^Elijo una tarjeta ya guardada$/) do
|
|
38
|
+
BROWSER.div(:id,'paymentDefinition.storedCard').radio(:class,'radio').click
|
|
39
|
+
BROWSER.div(:id,'paymentDefinition.storedCard').text_field(:id,"stored-card-0-security-code").set("123")
|
|
40
|
+
end
|
|
@@ -228,12 +228,12 @@ end
|
|
|
228
228
|
|
|
229
229
|
Then /^Verifico que dirija a la pagina de gracias$/ do
|
|
230
230
|
step "Verifico que la pagina no rompa"
|
|
231
|
+
byebug
|
|
231
232
|
begin
|
|
232
|
-
Watir::Wait.until(timeout = 350){BROWSER.div(:id,'popup-price-difference-template').present? or BROWSER.div(:class,'notification-box error-box').present? or BROWSER.span(:class =>'checkout-id').present? or BROWSER.em(:class =>'checkout-id').present? or BROWSER.div(:id =>'popup-new-flight').exist? or BROWSER.span(:class,/error-message/).present? or BROWSER.div(:class, 'ux-common-message ux-common-message-warning ').present? or BROWSER.div(:class, 'ux-common-error').present?}
|
|
233
|
+
Watir::Wait.until(timeout = 350){BROWSER.div(:id,'popup-price-difference-template').present? or BROWSER.div(:class,'notification-box error-box').present? or BROWSER.span(:class =>'checkout-id').present? or BROWSER.em(:class =>'checkout-id').present? or BROWSER.div(:id =>'popup-new-flight').exist? or BROWSER.span(:class,/error-message/).present? or BROWSER.div(:class, 'ux-common-message ux-common-message-warning ').present? or BROWSER.div(:class, 'ux-common-message ux-common-message-error ').present? or BROWSER.div(:class, 'ux-common-error').present?}
|
|
233
234
|
rescue Timeout::Error
|
|
234
235
|
pending("Timeout de 400 segundos al ingresar a la pagina de gracias")
|
|
235
236
|
end
|
|
236
|
-
text = BROWSER.div(:class,'notification-box error-box').text if BROWSER.div(:class,'notification-box error-box').present?
|
|
237
237
|
if BROWSER.div(:class,'notification-box error-box').present?
|
|
238
238
|
pending(BROWSER.div(:class,'notification-box error-box').text)
|
|
239
239
|
end
|
|
@@ -243,6 +243,9 @@ Then /^Verifico que dirija a la pagina de gracias$/ do
|
|
|
243
243
|
if BROWSER.div(:class,'ux-common-message ux-common-message-warning ').present? and !BROWSER.span(:class =>'checkout-id').present?
|
|
244
244
|
pending(BROWSER.div(:class,'ux-common-message ux-common-message-warning ').text.strip.no_accents.downcase)
|
|
245
245
|
end
|
|
246
|
+
if BROWSER.div(:class,'ux-common-message ux-common-message-error ').present? and !BROWSER.span(:class =>'checkout-id').present?
|
|
247
|
+
pending(BROWSER.div(:class,'ux-common-message ux-common-message-error ').text.strip.no_accents.downcase)
|
|
248
|
+
end
|
|
246
249
|
if BROWSER.div(:id,'popup-price-difference-template').present?
|
|
247
250
|
puts "Se mostro el popup de cambio de precio"
|
|
248
251
|
BROWSER.div(:id,'popup-price-difference-template').div(:class,'popup-button button-yes').click
|
|
@@ -13,8 +13,8 @@ def set_cookies(browser)
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
begin
|
|
16
|
-
browser.execute_script("javascript:void(document.cookie = 'X-UOW-CUSTOM=ROBOT-#{rand(1000)}; Path=/')")
|
|
17
|
-
#add_cookie("X-UOW-CUSTOM","ROBOT-#{rand(1000)}",{:path=>"/"})
|
|
16
|
+
browser.execute_script("javascript:void(document.cookie = 'X-UOW-CUSTOM=ROBOT-FGUI-#{rand(1000)}; Path=/')")
|
|
17
|
+
#add_cookie("X-UOW-CUSTOM","ROBOT-FGUI-#{rand(1000)}",{:path=>"/"})
|
|
18
18
|
if $ENV.upcase=="BETA" #or PROVIDER
|
|
19
19
|
#add_cookie("X-Version-Override",COOKIE,{:path=>"/"})
|
|
20
20
|
# if PROVIDER
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
#language: es
|
|
2
|
+
@checkout
|
|
3
|
+
Característica: checkout.fast_checkout
|
|
4
|
+
Se verifica la correcta carga y funcionamiento de la pagina de resultados con un usario logueado
|
|
5
|
+
|
|
6
|
+
@fast_checkout
|
|
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
|
+
Cuando Espero que termine de cargar
|
|
10
|
+
Entonces Verifico que traiga resultados
|
|
11
|
+
Cuando Elijo un itinerario y paso a checkout
|
|
12
|
+
Cuando Verifico que ingrese al checkout
|
|
13
|
+
Cuando me logueo como usuario "bookingvuelos@despegar.com" y pass "despegar"
|
|
14
|
+
Cuando Verifico que ingrese al checkout
|
|
15
|
+
Entonces verifico que se haya logueado correctamente
|
|
16
|
+
Y Verifico el segundo tag de google en resultado de checkout
|
|
17
|
+
Y Verifico que se muestre el banner de cancelacion
|
|
18
|
+
Y Valido los valores del desglose del checkout
|
|
19
|
+
Y Verifico el pixel de Efrontier
|
|
20
|
+
Y Si el site no es "PR", Verifico el pixel de trackeame en checkout
|
|
21
|
+
Entonces verifico que se muestren las tarjetas guardadas
|
|
22
|
+
Entonces verifico que se muestren los usuarios guardadas
|
|
23
|
+
Y Verifico que se muestren la caja de clientes felices
|
|
24
|
+
Entonces Completo el formulario de pasajeros
|
|
25
|
+
Y Elijo una tarjeta ya guardada
|
|
26
|
+
Y Completo los datos de contacto
|
|
27
|
+
Y Si pide factura fiscal, Completo los campos de factura fiscal
|
|
28
|
+
Y Realizo la compra
|
|
29
|
+
Entonces Verifico que dirija a la pagina de gracias
|
|
30
|
+
Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
|
|
31
|
+
Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
|
|
32
|
+
Entonces Si debo completar de vuelta el formulario, completo el formulario
|
|
33
|
+
Y Verifico que genere id cro
|
|
34
|
+
Y Si el site no es "PR", Verifico el pixel de trackeame en gracias
|
|
35
|
+
Y Verifico el pixel de Efrontier
|
|
36
|
+
Y Verifico el segundo tag de google en resultado de checkout
|
|
37
|
+
Y Verifico el link de mi despegar
|
|
38
|
+
Y Levanto los datos del vuelo
|
|
39
|
+
|
|
40
|
+
@ar
|
|
41
|
+
@roundtrip
|
|
42
|
+
Ejemplos:
|
|
43
|
+
|pais|tipo|cabotage|
|
|
44
|
+
|AR |roundtrip|nil|
|
|
45
|
+
@ar
|
|
46
|
+
@oneway
|
|
47
|
+
Ejemplos:
|
|
48
|
+
|pais|tipo|cabotage|
|
|
49
|
+
|AR |oneway|nil|
|
|
50
|
+
@ar
|
|
51
|
+
@multipledestinations
|
|
52
|
+
Ejemplos:
|
|
53
|
+
|pais|tipo|cabotage|
|
|
54
|
+
|AR |multipledestinations|nil|
|
|
55
|
+
@br
|
|
56
|
+
@roundtrip
|
|
57
|
+
Ejemplos:
|
|
58
|
+
|pais|tipo|cabotage|
|
|
59
|
+
|BR |roundtrip|nil|
|
|
60
|
+
@br
|
|
61
|
+
@oneway
|
|
62
|
+
Ejemplos:
|
|
63
|
+
|pais|tipo|cabotage|
|
|
64
|
+
|BR |oneway|nil|
|
|
65
|
+
@br
|
|
66
|
+
@multipledestinations
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|cabotage|
|
|
69
|
+
|BR |multipledestinations|nil|
|
|
70
|
+
@mx
|
|
71
|
+
@roundtrip
|
|
72
|
+
Ejemplos:
|
|
73
|
+
|pais|tipo|cabotage|
|
|
74
|
+
|MX |roundtrip|nil|
|
|
75
|
+
@mx
|
|
76
|
+
@oneway
|
|
77
|
+
Ejemplos:
|
|
78
|
+
|pais|tipo|cabotage|
|
|
79
|
+
|MX |oneway|nil|
|
|
80
|
+
@mx
|
|
81
|
+
@multipledestinations
|
|
82
|
+
Ejemplos:
|
|
83
|
+
|pais|tipo|cabotage|
|
|
84
|
+
|MX |multipledestinations|nil|
|
|
85
|
+
@us
|
|
86
|
+
@roundtrip
|
|
87
|
+
Ejemplos:
|
|
88
|
+
|pais|tipo|cabotage|
|
|
89
|
+
|US |roundtrip|nil|
|
|
90
|
+
@us
|
|
91
|
+
@oneway
|
|
92
|
+
Ejemplos:
|
|
93
|
+
|pais|tipo|cabotage|
|
|
94
|
+
|US |oneway|nil|
|
|
95
|
+
@us
|
|
96
|
+
@multipledestinations
|
|
97
|
+
Ejemplos:
|
|
98
|
+
|pais|tipo|cabotage|
|
|
99
|
+
|US |multipledestinations|nil|
|
|
@@ -51,16 +51,6 @@ Característica: search.wish_list
|
|
|
51
51
|
|pais|cabotage|tipo|
|
|
52
52
|
|BR|nil|roundtrip|
|
|
53
53
|
|BR|nil|oneway|
|
|
54
|
-
@mx
|
|
55
|
-
Ejemplos:
|
|
56
|
-
|pais|cabotage|tipo|
|
|
57
|
-
|MX|nil|roundtrip|
|
|
58
|
-
|MX|nil|oneway|
|
|
59
|
-
@ve
|
|
60
|
-
Ejemplos:
|
|
61
|
-
|pais|cabotage|tipo|
|
|
62
|
-
|VE|nil|roundtrip|
|
|
63
|
-
|VE|nil|oneway|
|
|
64
54
|
@us
|
|
65
55
|
Ejemplos:
|
|
66
56
|
|pais|cabotage|tipo|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
gem.name = "flights_gui_henry_tests" #Debe ser unico en el Gem Server, tratemos de utilizar nombre que identifiquen de forma inequivoca
|
|
15
15
|
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]5
|
|
17
|
-
gem.version = '2.9.
|
|
17
|
+
gem.version = '2.9.5' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
|
|
18
18
|
|
|
19
19
|
gem.add_dependency('henry-container', '>= 0.1.82')
|
|
20
20
|
gem.add_dependency('watir-webdriver')
|
data/henry-context.yml
CHANGED
|
@@ -2374,36 +2374,6 @@ tasks:
|
|
|
2374
2374
|
recipients:
|
|
2375
2375
|
- estebanldh@gmail.com
|
|
2376
2376
|
- nsimean@despegar.com
|
|
2377
|
-
- name: search.wish_list.mx
|
|
2378
|
-
class_name: Henry::Task::CucumberTask
|
|
2379
|
-
options:
|
|
2380
|
-
tags:
|
|
2381
|
-
- search
|
|
2382
|
-
- wish_list
|
|
2383
|
-
- mx
|
|
2384
|
-
expand: true
|
|
2385
|
-
no-source: true
|
|
2386
|
-
reports:
|
|
2387
|
-
- format: html
|
|
2388
|
-
name: ${DATE}_${TASK_NAME}.html
|
|
2389
|
-
recipients:
|
|
2390
|
-
- estebanldh@gmail.com
|
|
2391
|
-
- nsimean@despegar.com
|
|
2392
|
-
- name: search.wish_list.ve
|
|
2393
|
-
class_name: Henry::Task::CucumberTask
|
|
2394
|
-
options:
|
|
2395
|
-
tags:
|
|
2396
|
-
- search
|
|
2397
|
-
- wish_list
|
|
2398
|
-
- ve
|
|
2399
|
-
expand: true
|
|
2400
|
-
no-source: true
|
|
2401
|
-
reports:
|
|
2402
|
-
- format: html
|
|
2403
|
-
name: ${DATE}_${TASK_NAME}.html
|
|
2404
|
-
recipients:
|
|
2405
|
-
- estebanldh@gmail.com
|
|
2406
|
-
- nsimean@despegar.com
|
|
2407
2377
|
- name: search.wish_list.us
|
|
2408
2378
|
class_name: Henry::Task::CucumberTask
|
|
2409
2379
|
options:
|
|
@@ -14827,6 +14797,272 @@ tasks:
|
|
|
14827
14797
|
recipients:
|
|
14828
14798
|
- estebanldh@gmail.com
|
|
14829
14799
|
- nsimean@despegar.com
|
|
14800
|
+
- name: checkout.fast_checkout
|
|
14801
|
+
class_name: Henry::Task::CucumberTask
|
|
14802
|
+
options:
|
|
14803
|
+
tags:
|
|
14804
|
+
- checkout
|
|
14805
|
+
- fast_checkout
|
|
14806
|
+
expand: true
|
|
14807
|
+
no-source: true
|
|
14808
|
+
reports:
|
|
14809
|
+
- format: html
|
|
14810
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14811
|
+
recipients:
|
|
14812
|
+
- estebanldh@gmail.com
|
|
14813
|
+
- nsimean@despegar.com
|
|
14814
|
+
- name: checkout.fast_checkout.ar
|
|
14815
|
+
class_name: Henry::Task::CucumberTask
|
|
14816
|
+
options:
|
|
14817
|
+
tags:
|
|
14818
|
+
- checkout
|
|
14819
|
+
- fast_checkout
|
|
14820
|
+
- ar
|
|
14821
|
+
expand: true
|
|
14822
|
+
no-source: true
|
|
14823
|
+
reports:
|
|
14824
|
+
- format: html
|
|
14825
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14826
|
+
recipients:
|
|
14827
|
+
- estebanldh@gmail.com
|
|
14828
|
+
- nsimean@despegar.com
|
|
14829
|
+
- name: checkout.fast_checkout.ar.roundtrip
|
|
14830
|
+
class_name: Henry::Task::CucumberTask
|
|
14831
|
+
options:
|
|
14832
|
+
tags:
|
|
14833
|
+
- checkout
|
|
14834
|
+
- fast_checkout
|
|
14835
|
+
- ar
|
|
14836
|
+
- roundtrip
|
|
14837
|
+
expand: true
|
|
14838
|
+
no-source: true
|
|
14839
|
+
reports:
|
|
14840
|
+
- format: html
|
|
14841
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14842
|
+
recipients:
|
|
14843
|
+
- estebanldh@gmail.com
|
|
14844
|
+
- nsimean@despegar.com
|
|
14845
|
+
- name: checkout.fast_checkout.ar.oneway
|
|
14846
|
+
class_name: Henry::Task::CucumberTask
|
|
14847
|
+
options:
|
|
14848
|
+
tags:
|
|
14849
|
+
- checkout
|
|
14850
|
+
- fast_checkout
|
|
14851
|
+
- ar
|
|
14852
|
+
- oneway
|
|
14853
|
+
expand: true
|
|
14854
|
+
no-source: true
|
|
14855
|
+
reports:
|
|
14856
|
+
- format: html
|
|
14857
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14858
|
+
recipients:
|
|
14859
|
+
- estebanldh@gmail.com
|
|
14860
|
+
- nsimean@despegar.com
|
|
14861
|
+
- name: checkout.fast_checkout.ar.multipledestinations
|
|
14862
|
+
class_name: Henry::Task::CucumberTask
|
|
14863
|
+
options:
|
|
14864
|
+
tags:
|
|
14865
|
+
- checkout
|
|
14866
|
+
- fast_checkout
|
|
14867
|
+
- ar
|
|
14868
|
+
- multipledestinations
|
|
14869
|
+
expand: true
|
|
14870
|
+
no-source: true
|
|
14871
|
+
reports:
|
|
14872
|
+
- format: html
|
|
14873
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14874
|
+
recipients:
|
|
14875
|
+
- estebanldh@gmail.com
|
|
14876
|
+
- nsimean@despegar.com
|
|
14877
|
+
- name: checkout.fast_checkout.br
|
|
14878
|
+
class_name: Henry::Task::CucumberTask
|
|
14879
|
+
options:
|
|
14880
|
+
tags:
|
|
14881
|
+
- checkout
|
|
14882
|
+
- fast_checkout
|
|
14883
|
+
- br
|
|
14884
|
+
expand: true
|
|
14885
|
+
no-source: true
|
|
14886
|
+
reports:
|
|
14887
|
+
- format: html
|
|
14888
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14889
|
+
recipients:
|
|
14890
|
+
- estebanldh@gmail.com
|
|
14891
|
+
- nsimean@despegar.com
|
|
14892
|
+
- name: checkout.fast_checkout.br.roundtrip
|
|
14893
|
+
class_name: Henry::Task::CucumberTask
|
|
14894
|
+
options:
|
|
14895
|
+
tags:
|
|
14896
|
+
- checkout
|
|
14897
|
+
- fast_checkout
|
|
14898
|
+
- br
|
|
14899
|
+
- roundtrip
|
|
14900
|
+
expand: true
|
|
14901
|
+
no-source: true
|
|
14902
|
+
reports:
|
|
14903
|
+
- format: html
|
|
14904
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14905
|
+
recipients:
|
|
14906
|
+
- estebanldh@gmail.com
|
|
14907
|
+
- nsimean@despegar.com
|
|
14908
|
+
- name: checkout.fast_checkout.br.oneway
|
|
14909
|
+
class_name: Henry::Task::CucumberTask
|
|
14910
|
+
options:
|
|
14911
|
+
tags:
|
|
14912
|
+
- checkout
|
|
14913
|
+
- fast_checkout
|
|
14914
|
+
- br
|
|
14915
|
+
- oneway
|
|
14916
|
+
expand: true
|
|
14917
|
+
no-source: true
|
|
14918
|
+
reports:
|
|
14919
|
+
- format: html
|
|
14920
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14921
|
+
recipients:
|
|
14922
|
+
- estebanldh@gmail.com
|
|
14923
|
+
- nsimean@despegar.com
|
|
14924
|
+
- name: checkout.fast_checkout.br.multipledestinations
|
|
14925
|
+
class_name: Henry::Task::CucumberTask
|
|
14926
|
+
options:
|
|
14927
|
+
tags:
|
|
14928
|
+
- checkout
|
|
14929
|
+
- fast_checkout
|
|
14930
|
+
- br
|
|
14931
|
+
- multipledestinations
|
|
14932
|
+
expand: true
|
|
14933
|
+
no-source: true
|
|
14934
|
+
reports:
|
|
14935
|
+
- format: html
|
|
14936
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14937
|
+
recipients:
|
|
14938
|
+
- estebanldh@gmail.com
|
|
14939
|
+
- nsimean@despegar.com
|
|
14940
|
+
- name: checkout.fast_checkout.mx
|
|
14941
|
+
class_name: Henry::Task::CucumberTask
|
|
14942
|
+
options:
|
|
14943
|
+
tags:
|
|
14944
|
+
- checkout
|
|
14945
|
+
- fast_checkout
|
|
14946
|
+
- mx
|
|
14947
|
+
expand: true
|
|
14948
|
+
no-source: true
|
|
14949
|
+
reports:
|
|
14950
|
+
- format: html
|
|
14951
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14952
|
+
recipients:
|
|
14953
|
+
- estebanldh@gmail.com
|
|
14954
|
+
- nsimean@despegar.com
|
|
14955
|
+
- name: checkout.fast_checkout.mx.roundtrip
|
|
14956
|
+
class_name: Henry::Task::CucumberTask
|
|
14957
|
+
options:
|
|
14958
|
+
tags:
|
|
14959
|
+
- checkout
|
|
14960
|
+
- fast_checkout
|
|
14961
|
+
- mx
|
|
14962
|
+
- roundtrip
|
|
14963
|
+
expand: true
|
|
14964
|
+
no-source: true
|
|
14965
|
+
reports:
|
|
14966
|
+
- format: html
|
|
14967
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14968
|
+
recipients:
|
|
14969
|
+
- estebanldh@gmail.com
|
|
14970
|
+
- nsimean@despegar.com
|
|
14971
|
+
- name: checkout.fast_checkout.mx.oneway
|
|
14972
|
+
class_name: Henry::Task::CucumberTask
|
|
14973
|
+
options:
|
|
14974
|
+
tags:
|
|
14975
|
+
- checkout
|
|
14976
|
+
- fast_checkout
|
|
14977
|
+
- mx
|
|
14978
|
+
- oneway
|
|
14979
|
+
expand: true
|
|
14980
|
+
no-source: true
|
|
14981
|
+
reports:
|
|
14982
|
+
- format: html
|
|
14983
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
14984
|
+
recipients:
|
|
14985
|
+
- estebanldh@gmail.com
|
|
14986
|
+
- nsimean@despegar.com
|
|
14987
|
+
- name: checkout.fast_checkout.mx.multipledestinations
|
|
14988
|
+
class_name: Henry::Task::CucumberTask
|
|
14989
|
+
options:
|
|
14990
|
+
tags:
|
|
14991
|
+
- checkout
|
|
14992
|
+
- fast_checkout
|
|
14993
|
+
- mx
|
|
14994
|
+
- multipledestinations
|
|
14995
|
+
expand: true
|
|
14996
|
+
no-source: true
|
|
14997
|
+
reports:
|
|
14998
|
+
- format: html
|
|
14999
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
15000
|
+
recipients:
|
|
15001
|
+
- estebanldh@gmail.com
|
|
15002
|
+
- nsimean@despegar.com
|
|
15003
|
+
- name: checkout.fast_checkout.us
|
|
15004
|
+
class_name: Henry::Task::CucumberTask
|
|
15005
|
+
options:
|
|
15006
|
+
tags:
|
|
15007
|
+
- checkout
|
|
15008
|
+
- fast_checkout
|
|
15009
|
+
- us
|
|
15010
|
+
expand: true
|
|
15011
|
+
no-source: true
|
|
15012
|
+
reports:
|
|
15013
|
+
- format: html
|
|
15014
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
15015
|
+
recipients:
|
|
15016
|
+
- estebanldh@gmail.com
|
|
15017
|
+
- nsimean@despegar.com
|
|
15018
|
+
- name: checkout.fast_checkout.us.roundtrip
|
|
15019
|
+
class_name: Henry::Task::CucumberTask
|
|
15020
|
+
options:
|
|
15021
|
+
tags:
|
|
15022
|
+
- checkout
|
|
15023
|
+
- fast_checkout
|
|
15024
|
+
- us
|
|
15025
|
+
- roundtrip
|
|
15026
|
+
expand: true
|
|
15027
|
+
no-source: true
|
|
15028
|
+
reports:
|
|
15029
|
+
- format: html
|
|
15030
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
15031
|
+
recipients:
|
|
15032
|
+
- estebanldh@gmail.com
|
|
15033
|
+
- nsimean@despegar.com
|
|
15034
|
+
- name: checkout.fast_checkout.us.oneway
|
|
15035
|
+
class_name: Henry::Task::CucumberTask
|
|
15036
|
+
options:
|
|
15037
|
+
tags:
|
|
15038
|
+
- checkout
|
|
15039
|
+
- fast_checkout
|
|
15040
|
+
- us
|
|
15041
|
+
- oneway
|
|
15042
|
+
expand: true
|
|
15043
|
+
no-source: true
|
|
15044
|
+
reports:
|
|
15045
|
+
- format: html
|
|
15046
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
15047
|
+
recipients:
|
|
15048
|
+
- estebanldh@gmail.com
|
|
15049
|
+
- nsimean@despegar.com
|
|
15050
|
+
- name: checkout.fast_checkout.us.multipledestinations
|
|
15051
|
+
class_name: Henry::Task::CucumberTask
|
|
15052
|
+
options:
|
|
15053
|
+
tags:
|
|
15054
|
+
- checkout
|
|
15055
|
+
- fast_checkout
|
|
15056
|
+
- us
|
|
15057
|
+
- multipledestinations
|
|
15058
|
+
expand: true
|
|
15059
|
+
no-source: true
|
|
15060
|
+
reports:
|
|
15061
|
+
- format: html
|
|
15062
|
+
name: ${DATE}_${TASK_NAME}.html
|
|
15063
|
+
recipients:
|
|
15064
|
+
- estebanldh@gmail.com
|
|
15065
|
+
- nsimean@despegar.com
|
|
14830
15066
|
- name: checkout.price_jump
|
|
14831
15067
|
class_name: Henry::Task::CucumberTask
|
|
14832
15068
|
options:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flights_gui_henry_tests
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.9.
|
|
4
|
+
version: 2.9.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lgonzalez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: henry-container
|
|
@@ -184,6 +184,7 @@ files:
|
|
|
184
184
|
- features/step_definitions/checkout/checkout_steps.rb
|
|
185
185
|
- features/step_definitions/checkout/cupones_steps.rb
|
|
186
186
|
- features/step_definitions/checkout/error_messages.rb
|
|
187
|
+
- features/step_definitions/checkout/fast_checkout.rb
|
|
187
188
|
- features/step_definitions/checkout/price_jump_steps.rb
|
|
188
189
|
- features/step_definitions/checkout/seguros_steps.rb
|
|
189
190
|
- features/step_definitions/checkout/thanks_steps.rb
|
|
@@ -269,6 +270,7 @@ files:
|
|
|
269
270
|
- features/tests/checkout/compras_duplicadas.feature
|
|
270
271
|
- features/tests/checkout/cupones.feature
|
|
271
272
|
- features/tests/checkout/error_messages.feature
|
|
273
|
+
- features/tests/checkout/fast_checkout.feature
|
|
272
274
|
- features/tests/checkout/integration.feature
|
|
273
275
|
- features/tests/checkout/low_cost.feature
|
|
274
276
|
- features/tests/checkout/online_payment.feature
|