flights_gui_henry_tests 2.6.1 → 2.6.2
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 +5 -13
- data/features/step_definitions/checkout/checkout_steps.rb +0 -10
- data/features/step_definitions/checkout/error_messages.rb +3 -5
- data/features/step_definitions/checkout/price_difference_steps.rb +8 -3
- data/features/step_definitions/search/flight_gui_steps.rb +5 -3
- data/features/support/env.rb +1 -1
- data/features/support/lib/helpers/checkout.rb +2 -2
- data/features/tests/checkout/price_difference.feature +5 -3
- data/features/tests/checkout/providers.feature +32 -13
- data/flights_gui_henry_tests.gemspec +2 -2
- data/henry-context.yml +34 -34
- metadata +168 -154
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
OGZjYTI2OTg4YjMzOTEyMGMzOTM1NDVlNzI3ZmM3NWMxZGY1MTM5OA==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 7fdc242b470b76026dc1f7fd19c09a7d0746d343
|
|
4
|
+
data.tar.gz: 85550b51ceb636d80ab01b937e34f8f85697e6a0
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
MDE2MWVjZmM5YTIyOGQyZjQ1NTQ0YzI0ZTlkNWFlNjM2MDI4MWYzYWM3NDk0
|
|
11
|
-
NDQ4Y2JjNzRlNDFlNzYxOGY1MTk1OGI0ZTViMDVkYmEyNTdjZjI=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MjBlZTJlY2JiNzMwNjBkZGM4Y2RjZWYzNjJhMTZjOTYxNTE0NDliOGNmZmEy
|
|
14
|
-
NTNmNGQyMGI1ZWE5MzA1NzQ3ODUyOWI4YzZlYzQwYjVmMzQ0ODUyMThjZjZm
|
|
15
|
-
ZWI4YTgxZTNkMTViMTRiYzljZjExNDlkYjEzY2M4YjYxMzEzZWQ=
|
|
6
|
+
metadata.gz: 65ba7969514efb4bc9c0a52a508a372631e17b5d88f0f7f018dac753f5a37c6498e750be2abf0f2e6b5b904f9c711773e62a4d9d2d52946a76b146ca7002dfa9
|
|
7
|
+
data.tar.gz: 30546590b649493900d8d9ebb9e9759b0d8e4444fa34c1a91a82a07708c5a12af55f77cb4617e11af41d402a18993a482c3c4ff18c995673b2f07e841c441335
|
|
@@ -105,16 +105,6 @@ end
|
|
|
105
105
|
And /^Completo los datos para reservas CAC$/ do
|
|
106
106
|
BROWSER.execute_script("javascript:void(function(){ShowButtonCAC();})();")
|
|
107
107
|
BROWSER.li(:id,'cac-installment').radio(:class,'radio main-radio').set
|
|
108
|
-
if $SITE=="AR"
|
|
109
|
-
if [true,false][rand(2)]
|
|
110
|
-
BROWSER.div(:id,'offlinePaymentDefinition').select_list(:id,'owner-type').select_value("COMPANY")
|
|
111
|
-
BROWSER.div(:id,'offlinePaymentDefinition').text_field(:id,"owner-fiscal-document-number").set(30643063936)
|
|
112
|
-
else
|
|
113
|
-
BROWSER.div(:id,'offlinePaymentDefinition').select_list(:id,'owner-type').select_value("PERSON")
|
|
114
|
-
BROWSER.div(:id,'offlinePaymentDefinition').text_field(:id,'owner-document-number').set(32456734)
|
|
115
|
-
BROWSER.div(:id,'offlinePaymentDefinition').select_list(:id,'owner-gender').select_value("MALE")
|
|
116
|
-
end
|
|
117
|
-
end
|
|
118
108
|
if BROWSER.text_field(:id,"offline-owner-document-number").present?
|
|
119
109
|
number = case $SITE
|
|
120
110
|
when "CL" then "7028168-6"
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
When /^Verifico que sean visibles los campos obligatorios$/ do
|
|
3
3
|
container = BROWSER.fieldset(:id,'passengers')
|
|
4
4
|
index = 0
|
|
5
|
+
BROWSER.execute_script("javascript:void($('.other-passenger-inputs').css('display','block'));")
|
|
5
6
|
@search.adt.times do |adulto|
|
|
6
7
|
container.text_field(:id,"passenger-first-name-#{index}").should visible
|
|
7
8
|
container.text_field(:id,"passenger-last-name-#{index}").should visible
|
|
@@ -180,15 +181,11 @@ end
|
|
|
180
181
|
When /^Verifico que se muestre el combo de codigo de telefono de pais$/ do
|
|
181
182
|
doc = Hpricot.parse(BROWSER.html)
|
|
182
183
|
BROWSER.text_field(:id,'country-code-0').should visible
|
|
183
|
-
BROWSER.text_field(:id,'country-code-0').set("AR")
|
|
184
|
-
BROWSER.text_field(:id,'country-code-0').send_keys :enter
|
|
185
|
-
sleep(0.5)
|
|
186
|
-
BROWSER.text_field(:id,'country-code-0').value.should equal("Argentina (54)")
|
|
187
184
|
BROWSER.text_field(:id,'country-code-0').set("XX")
|
|
188
185
|
BROWSER.text_field(:id,'country-code-0').send_keys :tab
|
|
189
186
|
BROWSER.text_field(:id,'country-code-0').value.should equal("XX")
|
|
190
187
|
#BROWSER.span(:id,'phone-0-invalid').should visible
|
|
191
|
-
BROWSER.text_field(:id,'country-code-0').set("
|
|
188
|
+
BROWSER.text_field(:id,'country-code-0').set("Argentina (54)")
|
|
192
189
|
BROWSER.text_field(:id,'country-code-0').send_keys :enter
|
|
193
190
|
end
|
|
194
191
|
|
|
@@ -278,6 +275,7 @@ And /^Verifico los campos de cupones de descuento$/ do
|
|
|
278
275
|
end
|
|
279
276
|
|
|
280
277
|
And /^Verifico las nacionalidades de los pasajeros$/ do
|
|
278
|
+
BROWSER.execute_script("javascript:void($('.other-passenger-inputs').css('display','block'));")
|
|
281
279
|
if $SITE=~/AR|VE/
|
|
282
280
|
container = BROWSER.fieldset(:id,'passengers')
|
|
283
281
|
container.text_field(:id,"passenger-first-name-0").focus
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
|
2
2
|
Then /^completo el mail de contacto para forzar cambio de precio$/ do
|
|
3
|
+
$price_jump=true
|
|
3
4
|
itinerario = CheckoutCluster.new(@search.description,Hpricot.parse(BROWSER.div(:id,'detail').html))
|
|
4
5
|
price = (itinerario.tarifas["total"].valor * 0.1).to_i
|
|
5
6
|
puts price
|
|
@@ -61,6 +62,10 @@ And /^Elijo otro vuelo por el que cambio de vuelo$/ do
|
|
|
61
62
|
@popup.div(:class,'popup-link').links[0].click
|
|
62
63
|
end
|
|
63
64
|
|
|
64
|
-
And /^
|
|
65
|
-
BROWSER.
|
|
66
|
-
end
|
|
65
|
+
And /^elijo mas de una cuota con intereses$/ do
|
|
66
|
+
BROWSER.radio(:class,'radio main-radio radio-with-interest').set if BROWSER.div(:class,'installments-with-interest').radio(:value,/VI/).present?
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
And /^permite cobertura$/ do
|
|
70
|
+
BROWSER.div(:id,'upselling').should visible
|
|
71
|
+
end
|
|
@@ -266,7 +266,7 @@ Then /^elijo otro vuelo$/ do
|
|
|
266
266
|
BROWSER.div(:class,'notification-box warn-box').should_not visible
|
|
267
267
|
pending(BROWSER.div(:class,'ux-common-error').text) if BROWSER.div(:class,'ux-common-error').present?
|
|
268
268
|
sleep(1)
|
|
269
|
-
|
|
269
|
+
#@cluster_popup = RenderCluster.new(@search.description,Hpricot.parse(BROWSER.div(:id,'clusters').divs(:class,'cluster')[0].html))
|
|
270
270
|
BROWSER.radio(:id, "0-outbound-0").click if BROWSER.radio(:id, "0-outbound-0").present?
|
|
271
271
|
BROWSER.radio(:id, "0-inbound-0").click if BROWSER.radio(:id, "0-inbound-0").present?
|
|
272
272
|
BROWSER.a(:class=>'buy btn-buy flights-button').click
|
|
@@ -274,7 +274,7 @@ Then /^elijo otro vuelo$/ do
|
|
|
274
274
|
end
|
|
275
275
|
|
|
276
276
|
Then /^debo completar de vuelta el formulario$/ do
|
|
277
|
-
BROWSER.div(:class,/notification-box warn-box|ux-common-warning-content ux-common-warning-no-icon/).should visible
|
|
277
|
+
BROWSER.div(:class,/notification-box warn-box|ux-common-warning-content ux-common-warning-no-icon|ux-common-message ux-common-message-warning /).should visible
|
|
278
278
|
end
|
|
279
279
|
|
|
280
280
|
Then /^completo datos faltantes del formulario$/ do
|
|
@@ -288,6 +288,7 @@ Then /^completo el formulario$/ do
|
|
|
288
288
|
step "Completo el formulario de pasajeros"
|
|
289
289
|
step "Completo el formulario de tarjeta"
|
|
290
290
|
step "Completo los datos de contacto"
|
|
291
|
+
step "Si pide factura fiscal, Completo los campos de factura fiscal"
|
|
291
292
|
step "Realizo la compra"
|
|
292
293
|
step "Verifico que dirija a la pagina de gracias"
|
|
293
294
|
step "Si se muestra el popup de no disponibilidad, elijo otro vuelo"
|
|
@@ -298,10 +299,11 @@ Then /^completo el formulario para reservas CAC$/ do
|
|
|
298
299
|
step "Completo el formulario de pasajeros"
|
|
299
300
|
step "Completo los datos para reservas CAC"
|
|
300
301
|
step "Completo los datos de contacto"
|
|
302
|
+
step "Si pide factura fiscal, Completo los campos de factura fiscal"
|
|
301
303
|
step "Realizo la compra"
|
|
302
304
|
step "Verifico que dirija a la pagina de gracias"
|
|
303
305
|
step "Si se muestra el popup de no disponibilidad, elijo otro vuelo"
|
|
304
|
-
step "Si debo completar de vuelta el formulario, completo el formulario"
|
|
306
|
+
step "Si debo completar de vuelta el formulario, completo el formulario para reservas CAC"
|
|
305
307
|
end
|
|
306
308
|
|
|
307
309
|
Then /^el checkout me pide mas datos de tarjeta$/ do
|
data/features/support/env.rb
CHANGED
|
@@ -4,11 +4,11 @@ def validar_cuota_un_pago()
|
|
|
4
4
|
end
|
|
5
5
|
def validar_cuota_sin_intereses(total_1,total_2)
|
|
6
6
|
if BROWSER.fieldset(:class,'payment').li(:class,/selected/).span(:class,"installments-price").present?
|
|
7
|
-
doc = Hpricot.parse(BROWSER.fieldset(:class,'payment').li(:class,/selected/).
|
|
7
|
+
doc = Hpricot.parse(BROWSER.fieldset(:class,'payment').li(:class,/selected/).div(:class,"installments-price").html)
|
|
8
8
|
inicial = (doc/"span.first-installment").inner_text.downstrip.gsub(/\./,'').match(/(\d+)$/)[1].to_i
|
|
9
9
|
valor_restantes = (doc/"span.all-installments/span.currency/span.amount").inner_text.gsub(/\./,'').to_i
|
|
10
10
|
cant_restantes = (doc/"span.all-installments").inner_text.gsub(/\./,'').match(/\+ (\d)/)[1].to_i
|
|
11
|
-
(
|
|
11
|
+
(inicial + (cant_restantes * valor_restantes)).should be_within(3).of(total_2)
|
|
12
12
|
total_1.should equal(total_2)
|
|
13
13
|
else
|
|
14
14
|
total_1.should equal(total_2)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#language: es
|
|
2
2
|
@checkout
|
|
3
|
-
Característica: checkout.
|
|
3
|
+
Característica: checkout.price_jump
|
|
4
4
|
Se verifica la funcionalidad de diferencia de precios
|
|
5
5
|
|
|
6
|
-
@
|
|
6
|
+
@price_jump
|
|
7
7
|
Esquema del escenario: Ingresar a la pagina del checkout, formar el cambio de precio, verificar.
|
|
8
8
|
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
|
9
9
|
Cuando Espero que termine de cargar
|
|
@@ -12,6 +12,8 @@ Característica: checkout.price_difference
|
|
|
12
12
|
Cuando Verifico que ingrese al checkout
|
|
13
13
|
Entonces Completo el formulario de pasajeros
|
|
14
14
|
Y Completo el formulario de tarjeta
|
|
15
|
+
Y elijo mas de una cuota con intereses
|
|
16
|
+
Y Si permite cobertura, Elijo "chequear" si quiero cobertura
|
|
15
17
|
Y Completo los datos de resolucion AFIP
|
|
16
18
|
Y Completo los datos de contacto
|
|
17
19
|
Y Si pide factura fiscal, Completo los campos de factura fiscal
|
|
@@ -23,8 +25,8 @@ Característica: checkout.price_difference
|
|
|
23
25
|
Entonces Verifico que dirija a la pagina de gracias
|
|
24
26
|
Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
|
|
25
27
|
Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
|
|
26
|
-
Entonces Si cambio la forma de pago, verifico que los precios de las cuotas se muestran correctamente
|
|
27
28
|
Entonces Si debo completar de vuelta el formulario, completo datos faltantes del formulario
|
|
29
|
+
Y elijo mas de una cuota con intereses
|
|
28
30
|
Y completo el mail de contacto para forzar cambio de precio
|
|
29
31
|
Y Realizo la compra
|
|
30
32
|
Cuando Espero que cargue el popup de cambio de precio
|
|
@@ -5,7 +5,8 @@ Característica: checkout.providers
|
|
|
5
5
|
|
|
6
6
|
@providers
|
|
7
7
|
Esquema del escenario: Ingresar a la pagina de resultados
|
|
8
|
-
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "<from>" y destino "<to>" de tipo "<cabotage>"
|
|
8
|
+
#Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "<from>" y destino "<to>" de tipo "<cabotage>"
|
|
9
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
|
9
10
|
Cuando Espero que termine de cargar
|
|
10
11
|
Entonces Verifico que traiga resultados
|
|
11
12
|
Cuando Seteo el proveedor "<prov>"
|
|
@@ -36,17 +37,35 @@ Característica: checkout.providers
|
|
|
36
37
|
Y Verifico el link de mi despegar
|
|
37
38
|
Y Levanto los datos del vuelo
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
40
|
+
# @us
|
|
41
|
+
# Ejemplos:
|
|
42
|
+
# |pais|tipo|cabotage|prov|from|to|date_from|date_to|
|
|
43
|
+
# |US|roundtrip|true|VOL|MEX|CUN|2014-06-28|2014-06-17|
|
|
44
|
+
# |US|oneway|true|VOL|LAX|CUN|2014-06-28|2014-07-17|
|
|
45
|
+
# |US|roundtrip|true|VOL|MEX|LAX|2014-06-01|2014-06-15|
|
|
46
|
+
# |US|oneway|true|VOL|MEX|GDL|2014-06-19|2014-06-27|
|
|
47
|
+
# @mx
|
|
48
|
+
# Ejemplos:
|
|
49
|
+
# |pais|tipo|cabotage|prov|from|to|date_from|date_to|
|
|
50
|
+
# |MX|roundtrip|true|VOL|MEX|MTY|2014-02-28|2014-03-17|
|
|
51
|
+
# |MX|oneway|true|VOL|MEX|GDL|2014-03-28|2014-04-17|
|
|
52
|
+
# |MX|roundtrip|true|VOL|MEX|CUN|2014-03-01|2014-03-15|
|
|
53
|
+
# |MX|oneway|true|VOL|MEX|CUN|2014-02-19|2014-02-27|
|
|
54
|
+
@ar
|
|
47
55
|
Ejemplos:
|
|
48
56
|
|pais|tipo|cabotage|prov|from|to|date_from|date_to|
|
|
49
|
-
|
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
|
|
57
|
+
|AR|roundtrip|nil|WDS|MEX|MTY|2014-02-28|2014-03-17|
|
|
58
|
+
|AR|oneway|true|WDS|MEX|GDL|2014-03-28|2014-04-17|
|
|
59
|
+
|AR|multipledestinations|nil|WDS|MEX|CUN|2014-03-01|2014-03-15|
|
|
60
|
+
@pe
|
|
61
|
+
Ejemplos:
|
|
62
|
+
|pais|tipo|cabotage|prov|from|to|date_from|date_to|
|
|
63
|
+
|PE|roundtrip|nil|WDS|MEX|MTY|2014-02-28|2014-03-17|
|
|
64
|
+
|PE|oneway|nil|WDS|MEX|GDL|2014-03-28|2014-04-17|
|
|
65
|
+
|PE|multipledestinations|nil|WDS|MEX|CUN|2014-03-01|2014-03-15|
|
|
66
|
+
@co
|
|
67
|
+
Ejemplos:
|
|
68
|
+
|pais|tipo|cabotage|prov|from|to|date_from|date_to|
|
|
69
|
+
|CO|roundtrip|true|WDS|MEX|MTY|2014-02-28|2014-03-17|
|
|
70
|
+
|CO|oneway|nil|WDS|MEX|GDL|2014-03-28|2014-04-17|
|
|
71
|
+
|CO|multipledestinations|true|WDS|MEX|CUN|2014-03-01|2014-03-15|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
|
|
17
17
|
|
|
18
|
-
gem.version = '2.6.
|
|
18
|
+
gem.version = '2.6.2' #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.82')
|
|
21
21
|
gem.add_dependency('watir-webdriver')
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
gem.add_dependency('sixarm_ruby_unaccent')
|
|
27
27
|
gem.add_dependency('sanitize')
|
|
28
28
|
gem.add_dependency('mock_search')
|
|
29
|
-
|
|
29
|
+
gem.add_dependency('byebug')
|
|
30
30
|
|
|
31
31
|
gem.add_development_dependency('geminabox')
|
|
32
32
|
|
data/henry-context.yml
CHANGED
|
@@ -16444,12 +16444,12 @@ tasks:
|
|
|
16444
16444
|
recipients:
|
|
16445
16445
|
- estebanldh@gmail.com
|
|
16446
16446
|
- nsimean@despegar.com
|
|
16447
|
-
- name: checkout.
|
|
16447
|
+
- name: checkout.price_jump
|
|
16448
16448
|
class_name: Henry::Task::CucumberTask
|
|
16449
16449
|
options:
|
|
16450
16450
|
tags:
|
|
16451
16451
|
- checkout
|
|
16452
|
-
-
|
|
16452
|
+
- price_jump
|
|
16453
16453
|
expand: true
|
|
16454
16454
|
no-source: true
|
|
16455
16455
|
reports:
|
|
@@ -16458,12 +16458,12 @@ tasks:
|
|
|
16458
16458
|
recipients:
|
|
16459
16459
|
- estebanldh@gmail.com
|
|
16460
16460
|
- nsimean@despegar.com
|
|
16461
|
-
- name: checkout.
|
|
16461
|
+
- name: checkout.price_jump.ar
|
|
16462
16462
|
class_name: Henry::Task::CucumberTask
|
|
16463
16463
|
options:
|
|
16464
16464
|
tags:
|
|
16465
16465
|
- checkout
|
|
16466
|
-
-
|
|
16466
|
+
- price_jump
|
|
16467
16467
|
- ar
|
|
16468
16468
|
expand: true
|
|
16469
16469
|
no-source: true
|
|
@@ -16473,12 +16473,12 @@ tasks:
|
|
|
16473
16473
|
recipients:
|
|
16474
16474
|
- estebanldh@gmail.com
|
|
16475
16475
|
- nsimean@despegar.com
|
|
16476
|
-
- name: checkout.
|
|
16476
|
+
- name: checkout.price_jump.ar.roundtrip
|
|
16477
16477
|
class_name: Henry::Task::CucumberTask
|
|
16478
16478
|
options:
|
|
16479
16479
|
tags:
|
|
16480
16480
|
- checkout
|
|
16481
|
-
-
|
|
16481
|
+
- price_jump
|
|
16482
16482
|
- ar
|
|
16483
16483
|
- roundtrip
|
|
16484
16484
|
expand: true
|
|
@@ -16489,12 +16489,12 @@ tasks:
|
|
|
16489
16489
|
recipients:
|
|
16490
16490
|
- estebanldh@gmail.com
|
|
16491
16491
|
- nsimean@despegar.com
|
|
16492
|
-
- name: checkout.
|
|
16492
|
+
- name: checkout.price_jump.ar.oneway
|
|
16493
16493
|
class_name: Henry::Task::CucumberTask
|
|
16494
16494
|
options:
|
|
16495
16495
|
tags:
|
|
16496
16496
|
- checkout
|
|
16497
|
-
-
|
|
16497
|
+
- price_jump
|
|
16498
16498
|
- ar
|
|
16499
16499
|
- oneway
|
|
16500
16500
|
expand: true
|
|
@@ -16505,12 +16505,12 @@ tasks:
|
|
|
16505
16505
|
recipients:
|
|
16506
16506
|
- estebanldh@gmail.com
|
|
16507
16507
|
- nsimean@despegar.com
|
|
16508
|
-
- name: checkout.
|
|
16508
|
+
- name: checkout.price_jump.ar.multipledestinations
|
|
16509
16509
|
class_name: Henry::Task::CucumberTask
|
|
16510
16510
|
options:
|
|
16511
16511
|
tags:
|
|
16512
16512
|
- checkout
|
|
16513
|
-
-
|
|
16513
|
+
- price_jump
|
|
16514
16514
|
- ar
|
|
16515
16515
|
- multipledestinations
|
|
16516
16516
|
expand: true
|
|
@@ -16521,12 +16521,12 @@ tasks:
|
|
|
16521
16521
|
recipients:
|
|
16522
16522
|
- estebanldh@gmail.com
|
|
16523
16523
|
- nsimean@despegar.com
|
|
16524
|
-
- name: checkout.
|
|
16524
|
+
- name: checkout.price_jump.br
|
|
16525
16525
|
class_name: Henry::Task::CucumberTask
|
|
16526
16526
|
options:
|
|
16527
16527
|
tags:
|
|
16528
16528
|
- checkout
|
|
16529
|
-
-
|
|
16529
|
+
- price_jump
|
|
16530
16530
|
- br
|
|
16531
16531
|
expand: true
|
|
16532
16532
|
no-source: true
|
|
@@ -16536,12 +16536,12 @@ tasks:
|
|
|
16536
16536
|
recipients:
|
|
16537
16537
|
- estebanldh@gmail.com
|
|
16538
16538
|
- nsimean@despegar.com
|
|
16539
|
-
- name: checkout.
|
|
16539
|
+
- name: checkout.price_jump.br.roundtrip
|
|
16540
16540
|
class_name: Henry::Task::CucumberTask
|
|
16541
16541
|
options:
|
|
16542
16542
|
tags:
|
|
16543
16543
|
- checkout
|
|
16544
|
-
-
|
|
16544
|
+
- price_jump
|
|
16545
16545
|
- br
|
|
16546
16546
|
- roundtrip
|
|
16547
16547
|
expand: true
|
|
@@ -16552,12 +16552,12 @@ tasks:
|
|
|
16552
16552
|
recipients:
|
|
16553
16553
|
- estebanldh@gmail.com
|
|
16554
16554
|
- nsimean@despegar.com
|
|
16555
|
-
- name: checkout.
|
|
16555
|
+
- name: checkout.price_jump.br.oneway
|
|
16556
16556
|
class_name: Henry::Task::CucumberTask
|
|
16557
16557
|
options:
|
|
16558
16558
|
tags:
|
|
16559
16559
|
- checkout
|
|
16560
|
-
-
|
|
16560
|
+
- price_jump
|
|
16561
16561
|
- br
|
|
16562
16562
|
- oneway
|
|
16563
16563
|
expand: true
|
|
@@ -16568,12 +16568,12 @@ tasks:
|
|
|
16568
16568
|
recipients:
|
|
16569
16569
|
- estebanldh@gmail.com
|
|
16570
16570
|
- nsimean@despegar.com
|
|
16571
|
-
- name: checkout.
|
|
16571
|
+
- name: checkout.price_jump.br.multipledestinations
|
|
16572
16572
|
class_name: Henry::Task::CucumberTask
|
|
16573
16573
|
options:
|
|
16574
16574
|
tags:
|
|
16575
16575
|
- checkout
|
|
16576
|
-
-
|
|
16576
|
+
- price_jump
|
|
16577
16577
|
- br
|
|
16578
16578
|
- multipledestinations
|
|
16579
16579
|
expand: true
|
|
@@ -16584,12 +16584,12 @@ tasks:
|
|
|
16584
16584
|
recipients:
|
|
16585
16585
|
- estebanldh@gmail.com
|
|
16586
16586
|
- nsimean@despegar.com
|
|
16587
|
-
- name: checkout.
|
|
16587
|
+
- name: checkout.price_jump.mx
|
|
16588
16588
|
class_name: Henry::Task::CucumberTask
|
|
16589
16589
|
options:
|
|
16590
16590
|
tags:
|
|
16591
16591
|
- checkout
|
|
16592
|
-
-
|
|
16592
|
+
- price_jump
|
|
16593
16593
|
- mx
|
|
16594
16594
|
expand: true
|
|
16595
16595
|
no-source: true
|
|
@@ -16599,12 +16599,12 @@ tasks:
|
|
|
16599
16599
|
recipients:
|
|
16600
16600
|
- estebanldh@gmail.com
|
|
16601
16601
|
- nsimean@despegar.com
|
|
16602
|
-
- name: checkout.
|
|
16602
|
+
- name: checkout.price_jump.mx.roundtrip
|
|
16603
16603
|
class_name: Henry::Task::CucumberTask
|
|
16604
16604
|
options:
|
|
16605
16605
|
tags:
|
|
16606
16606
|
- checkout
|
|
16607
|
-
-
|
|
16607
|
+
- price_jump
|
|
16608
16608
|
- mx
|
|
16609
16609
|
- roundtrip
|
|
16610
16610
|
expand: true
|
|
@@ -16615,12 +16615,12 @@ tasks:
|
|
|
16615
16615
|
recipients:
|
|
16616
16616
|
- estebanldh@gmail.com
|
|
16617
16617
|
- nsimean@despegar.com
|
|
16618
|
-
- name: checkout.
|
|
16618
|
+
- name: checkout.price_jump.mx.oneway
|
|
16619
16619
|
class_name: Henry::Task::CucumberTask
|
|
16620
16620
|
options:
|
|
16621
16621
|
tags:
|
|
16622
16622
|
- checkout
|
|
16623
|
-
-
|
|
16623
|
+
- price_jump
|
|
16624
16624
|
- mx
|
|
16625
16625
|
- oneway
|
|
16626
16626
|
expand: true
|
|
@@ -16631,12 +16631,12 @@ tasks:
|
|
|
16631
16631
|
recipients:
|
|
16632
16632
|
- estebanldh@gmail.com
|
|
16633
16633
|
- nsimean@despegar.com
|
|
16634
|
-
- name: checkout.
|
|
16634
|
+
- name: checkout.price_jump.mx.multipledestinations
|
|
16635
16635
|
class_name: Henry::Task::CucumberTask
|
|
16636
16636
|
options:
|
|
16637
16637
|
tags:
|
|
16638
16638
|
- checkout
|
|
16639
|
-
-
|
|
16639
|
+
- price_jump
|
|
16640
16640
|
- mx
|
|
16641
16641
|
- multipledestinations
|
|
16642
16642
|
expand: true
|
|
@@ -16647,12 +16647,12 @@ tasks:
|
|
|
16647
16647
|
recipients:
|
|
16648
16648
|
- estebanldh@gmail.com
|
|
16649
16649
|
- nsimean@despegar.com
|
|
16650
|
-
- name: checkout.
|
|
16650
|
+
- name: checkout.price_jump.us
|
|
16651
16651
|
class_name: Henry::Task::CucumberTask
|
|
16652
16652
|
options:
|
|
16653
16653
|
tags:
|
|
16654
16654
|
- checkout
|
|
16655
|
-
-
|
|
16655
|
+
- price_jump
|
|
16656
16656
|
- us
|
|
16657
16657
|
expand: true
|
|
16658
16658
|
no-source: true
|
|
@@ -16662,12 +16662,12 @@ tasks:
|
|
|
16662
16662
|
recipients:
|
|
16663
16663
|
- estebanldh@gmail.com
|
|
16664
16664
|
- nsimean@despegar.com
|
|
16665
|
-
- name: checkout.
|
|
16665
|
+
- name: checkout.price_jump.us.roundtrip
|
|
16666
16666
|
class_name: Henry::Task::CucumberTask
|
|
16667
16667
|
options:
|
|
16668
16668
|
tags:
|
|
16669
16669
|
- checkout
|
|
16670
|
-
-
|
|
16670
|
+
- price_jump
|
|
16671
16671
|
- us
|
|
16672
16672
|
- roundtrip
|
|
16673
16673
|
expand: true
|
|
@@ -16678,12 +16678,12 @@ tasks:
|
|
|
16678
16678
|
recipients:
|
|
16679
16679
|
- estebanldh@gmail.com
|
|
16680
16680
|
- nsimean@despegar.com
|
|
16681
|
-
- name: checkout.
|
|
16681
|
+
- name: checkout.price_jump.us.oneway
|
|
16682
16682
|
class_name: Henry::Task::CucumberTask
|
|
16683
16683
|
options:
|
|
16684
16684
|
tags:
|
|
16685
16685
|
- checkout
|
|
16686
|
-
-
|
|
16686
|
+
- price_jump
|
|
16687
16687
|
- us
|
|
16688
16688
|
- oneway
|
|
16689
16689
|
expand: true
|
|
@@ -16694,12 +16694,12 @@ tasks:
|
|
|
16694
16694
|
recipients:
|
|
16695
16695
|
- estebanldh@gmail.com
|
|
16696
16696
|
- nsimean@despegar.com
|
|
16697
|
-
- name: checkout.
|
|
16697
|
+
- name: checkout.price_jump.us.multipledestinations
|
|
16698
16698
|
class_name: Henry::Task::CucumberTask
|
|
16699
16699
|
options:
|
|
16700
16700
|
tags:
|
|
16701
16701
|
- checkout
|
|
16702
|
-
-
|
|
16702
|
+
- price_jump
|
|
16703
16703
|
- us
|
|
16704
16704
|
- multipledestinations
|
|
16705
16705
|
expand: true
|
metadata
CHANGED
|
@@ -1,153 +1,167 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flights_gui_henry_tests
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lgonzalez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: henry-container
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 0.1.82
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.1.82
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: watir-webdriver
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: cucumber
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: hpricot
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - ">="
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '0'
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
|
-
- -
|
|
80
|
+
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: httparty
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- -
|
|
87
|
+
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
|
-
- -
|
|
94
|
+
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: sixarm_ruby_unaccent
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
|
-
- -
|
|
101
|
+
- - ">="
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: '0'
|
|
104
104
|
type: :runtime
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
|
-
- -
|
|
108
|
+
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: sanitize
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
|
-
- -
|
|
115
|
+
- - ">="
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
117
|
version: '0'
|
|
118
118
|
type: :runtime
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
122
|
-
- -
|
|
122
|
+
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
125
|
- !ruby/object:Gem::Dependency
|
|
126
126
|
name: mock_search
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
|
129
|
-
- -
|
|
129
|
+
- - ">="
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
131
|
version: '0'
|
|
132
132
|
type: :runtime
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
136
|
-
- -
|
|
136
|
+
- - ">="
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '0'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: byebug
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - ">="
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '0'
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - ">="
|
|
137
151
|
- !ruby/object:Gem::Version
|
|
138
152
|
version: '0'
|
|
139
153
|
- !ruby/object:Gem::Dependency
|
|
140
154
|
name: geminabox
|
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
|
142
156
|
requirements:
|
|
143
|
-
- -
|
|
157
|
+
- - ">="
|
|
144
158
|
- !ruby/object:Gem::Version
|
|
145
159
|
version: '0'
|
|
146
160
|
type: :development
|
|
147
161
|
prerelease: false
|
|
148
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
163
|
requirements:
|
|
150
|
-
- -
|
|
164
|
+
- - ">="
|
|
151
165
|
- !ruby/object:Gem::Version
|
|
152
166
|
version: '0'
|
|
153
167
|
description: test automatizado para el proyecto flights gui
|
|
@@ -157,159 +171,159 @@ executables: []
|
|
|
157
171
|
extensions: []
|
|
158
172
|
extra_rdoc_files: []
|
|
159
173
|
files:
|
|
160
|
-
- flights_gui_henry_tests.gemspec
|
|
161
174
|
- Gemfile
|
|
175
|
+
- features/data/home-offers-config.csv
|
|
176
|
+
- features/data/host.yml
|
|
177
|
+
- features/data/miles.yml
|
|
178
|
+
- features/data/search.yml
|
|
179
|
+
- features/data/sites.yml
|
|
180
|
+
- features/data/tag_microsoft.yml
|
|
181
|
+
- features/step_definitions/checkout/agencia_steps.rb
|
|
182
|
+
- features/step_definitions/checkout/chat_steps.rb
|
|
183
|
+
- features/step_definitions/checkout/checkout_steps.rb
|
|
184
|
+
- features/step_definitions/checkout/cupones_steps.rb
|
|
185
|
+
- features/step_definitions/checkout/error_messages.rb
|
|
186
|
+
- features/step_definitions/checkout/new_pay_method_steps.rb
|
|
187
|
+
- features/step_definitions/checkout/price_difference_steps.rb
|
|
188
|
+
- features/step_definitions/checkout/seguros_steps.rb
|
|
189
|
+
- features/step_definitions/checkout/thanks_steps.rb
|
|
190
|
+
- features/step_definitions/content/contents_steps.rb
|
|
191
|
+
- features/step_definitions/desambiguation/disambiguation_airports_steps.rb
|
|
192
|
+
- features/step_definitions/desambiguation/disambiguation_city_steps.rb
|
|
193
|
+
- features/step_definitions/filter/filters_airlines.rb
|
|
194
|
+
- features/step_definitions/filter/filters_airports_steps.rb
|
|
195
|
+
- features/step_definitions/filter/filters_price_steps.rb
|
|
196
|
+
- features/step_definitions/filter/filters_stops_steps.rb
|
|
197
|
+
- features/step_definitions/filter/filters_time_steps.rb
|
|
198
|
+
- features/step_definitions/filter/matrix_steps.rb
|
|
199
|
+
- features/step_definitions/landing/landing_checkout_steps.rb
|
|
200
|
+
- features/step_definitions/landing/landing_filters_steps.rb
|
|
201
|
+
- features/step_definitions/landing/landing_home_alerts_steps.rb
|
|
202
|
+
- features/step_definitions/landing/landing_home_steps.rb
|
|
203
|
+
- features/step_definitions/landing/landing_long_tail.rb
|
|
204
|
+
- features/step_definitions/landing/landing_negative_steps.rb
|
|
205
|
+
- features/step_definitions/landing/landing_passenger_review_steps.rb
|
|
206
|
+
- features/step_definitions/landing/landing_steps.rb
|
|
207
|
+
- features/step_definitions/orders/orders.rb
|
|
208
|
+
- features/step_definitions/others/advancedgui_steps.rb
|
|
209
|
+
- features/step_definitions/others/advancednogui_steps.rb
|
|
210
|
+
- features/step_definitions/others/anticipatedsearch_steps.rb
|
|
211
|
+
- features/step_definitions/others/cookies_steps.rb
|
|
212
|
+
- features/step_definitions/others/flights_tracker_steps.rb
|
|
213
|
+
- features/step_definitions/others/generic_steps.rb
|
|
214
|
+
- features/step_definitions/others/newsletter_steps.rb
|
|
215
|
+
- features/step_definitions/others/one_day_search.rb
|
|
216
|
+
- features/step_definitions/others/print_steps.rb
|
|
217
|
+
- features/step_definitions/others/querystringparameters_steps.rb
|
|
218
|
+
- features/step_definitions/others/recommendation_steps.rb
|
|
219
|
+
- features/step_definitions/others/render_steps.rb
|
|
220
|
+
- features/step_definitions/others/tag_steps.rb
|
|
221
|
+
- features/step_definitions/others/upgrade_bussines_steps.rb
|
|
222
|
+
- features/step_definitions/results/devtools_steps.rb
|
|
223
|
+
- features/step_definitions/results/itineraries_steps.rb
|
|
224
|
+
- features/step_definitions/results/load_steps.rb
|
|
225
|
+
- features/step_definitions/results/results_steps.rb
|
|
226
|
+
- features/step_definitions/results/search_steps.rb
|
|
227
|
+
- features/step_definitions/search/alerts_steps.rb
|
|
228
|
+
- features/step_definitions/search/basefare_steps.rb
|
|
229
|
+
- features/step_definitions/search/bestprices_steps.rb
|
|
230
|
+
- features/step_definitions/search/cross_sell_row_hoteles.rb
|
|
231
|
+
- features/step_definitions/search/cross_sell_steps.rb
|
|
232
|
+
- features/step_definitions/search/delays_steps.rb
|
|
233
|
+
- features/step_definitions/search/details_steps.rb
|
|
234
|
+
- features/step_definitions/search/ecoflights_steps.rb
|
|
235
|
+
- features/step_definitions/search/errors_steps.rb
|
|
236
|
+
- features/step_definitions/search/fenix_steps.rb
|
|
237
|
+
- features/step_definitions/search/flight_gui_steps.rb
|
|
238
|
+
- features/step_definitions/search/miles_step.rb
|
|
239
|
+
- features/step_definitions/search/pagination_steps.rb
|
|
240
|
+
- features/step_definitions/search/reviews_step.rb
|
|
241
|
+
- features/step_definitions/search/search_no_gui_steps.rb
|
|
242
|
+
- features/step_definitions/search/wish_list_steps.rb
|
|
243
|
+
- features/support/env.rb
|
|
162
244
|
- features/support/lib/clusters.rb
|
|
163
|
-
- features/support/lib/
|
|
164
|
-
- features/support/lib/
|
|
165
|
-
- features/support/lib/
|
|
245
|
+
- features/support/lib/clusters/checkout_cluster.rb
|
|
246
|
+
- features/support/lib/clusters/data/data.rb
|
|
247
|
+
- features/support/lib/clusters/details/details_cluster.rb
|
|
166
248
|
- features/support/lib/clusters/results/landing_cluster.rb
|
|
167
249
|
- features/support/lib/clusters/results/render_cluster.rb
|
|
168
|
-
- features/support/lib/clusters/checkout_cluster.rb
|
|
169
250
|
- features/support/lib/clusters/results_cluster.rb
|
|
170
|
-
- features/support/lib/clusters/details/details_cluster.rb
|
|
171
|
-
- features/support/lib/clusters/data/data.rb
|
|
172
251
|
- features/support/lib/helpers.rb
|
|
173
|
-
- features/support/lib/price.rb
|
|
174
|
-
- features/support/lib/helpers/clusters.rb
|
|
175
252
|
- features/support/lib/helpers/browser.rb
|
|
176
253
|
- features/support/lib/helpers/checkout.rb
|
|
254
|
+
- features/support/lib/helpers/clusters.rb
|
|
177
255
|
- features/support/lib/helpers/landing.rb
|
|
178
256
|
- features/support/lib/helpers/render.rb
|
|
257
|
+
- features/support/lib/price.rb
|
|
179
258
|
- features/support/lib/services.rb
|
|
180
|
-
- features/support/
|
|
259
|
+
- features/support/lib/services/fenix.rb
|
|
260
|
+
- features/support/lib/services/landing.rb
|
|
261
|
+
- features/support/lib/services/results.rb
|
|
181
262
|
- features/support/matchers.rb
|
|
182
263
|
- features/support/redefinitions.rb
|
|
183
|
-
- features/
|
|
184
|
-
- features/
|
|
185
|
-
- features/
|
|
186
|
-
- features/
|
|
187
|
-
- features/
|
|
188
|
-
- features/
|
|
189
|
-
- features/
|
|
190
|
-
- features/
|
|
191
|
-
- features/
|
|
192
|
-
- features/
|
|
193
|
-
- features/
|
|
194
|
-
- features/
|
|
195
|
-
- features/
|
|
196
|
-
- features/
|
|
197
|
-
- features/
|
|
198
|
-
- features/
|
|
199
|
-
- features/
|
|
200
|
-
- features/
|
|
201
|
-
- features/
|
|
202
|
-
- features/
|
|
203
|
-
- features/
|
|
204
|
-
- features/
|
|
205
|
-
- features/
|
|
206
|
-
- features/
|
|
207
|
-
- features/
|
|
208
|
-
- features/
|
|
209
|
-
- features/
|
|
210
|
-
- features/
|
|
211
|
-
- features/
|
|
212
|
-
- features/
|
|
213
|
-
- features/
|
|
214
|
-
- features/
|
|
215
|
-
- features/
|
|
216
|
-
- features/
|
|
217
|
-
- features/step_definitions/others/querystringparameters_steps.rb
|
|
218
|
-
- features/step_definitions/others/flights_tracker_steps.rb
|
|
219
|
-
- features/step_definitions/others/anticipatedsearch_steps.rb
|
|
220
|
-
- features/step_definitions/others/cookies_steps.rb
|
|
221
|
-
- features/step_definitions/others/recommendation_steps.rb
|
|
222
|
-
- features/step_definitions/others/print_steps.rb
|
|
223
|
-
- features/step_definitions/others/tag_steps.rb
|
|
224
|
-
- features/step_definitions/others/newsletter_steps.rb
|
|
225
|
-
- features/step_definitions/others/advancedgui_steps.rb
|
|
226
|
-
- features/step_definitions/others/one_day_search.rb
|
|
227
|
-
- features/step_definitions/others/upgrade_bussines_steps.rb
|
|
228
|
-
- features/step_definitions/filter/filters_time_steps.rb
|
|
229
|
-
- features/step_definitions/filter/filters_airlines.rb
|
|
230
|
-
- features/step_definitions/filter/filters_stops_steps.rb
|
|
231
|
-
- features/step_definitions/filter/matrix_steps.rb
|
|
232
|
-
- features/step_definitions/filter/filters_airports_steps.rb
|
|
233
|
-
- features/step_definitions/filter/filters_price_steps.rb
|
|
234
|
-
- features/step_definitions/content/contents_steps.rb
|
|
235
|
-
- features/step_definitions/orders/orders.rb
|
|
236
|
-
- features/step_definitions/checkout/new_pay_method_steps.rb
|
|
237
|
-
- features/step_definitions/checkout/cupones_steps.rb
|
|
238
|
-
- features/step_definitions/checkout/checkout_steps.rb
|
|
239
|
-
- features/step_definitions/checkout/error_messages.rb
|
|
240
|
-
- features/step_definitions/checkout/seguros_steps.rb
|
|
241
|
-
- features/step_definitions/checkout/price_difference_steps.rb
|
|
242
|
-
- features/step_definitions/checkout/thanks_steps.rb
|
|
243
|
-
- features/step_definitions/checkout/chat_steps.rb
|
|
244
|
-
- features/step_definitions/checkout/agencia_steps.rb
|
|
245
|
-
- features/data/host.yml
|
|
246
|
-
- features/data/tag_microsoft.yml
|
|
247
|
-
- features/data/sites.yml
|
|
248
|
-
- features/data/search.yml
|
|
249
|
-
- features/data/home-offers-config.csv
|
|
250
|
-
- features/data/miles.yml
|
|
251
|
-
- features/tests/search/reviews.feature
|
|
252
|
-
- features/tests/search/searches.feature
|
|
253
|
-
- features/tests/search/basefare.feature
|
|
254
|
-
- features/tests/search/errors.feature
|
|
255
|
-
- features/tests/search/itineraries.feature
|
|
256
|
-
- features/tests/search/orders.feature
|
|
257
|
-
- features/tests/search/wish_list.feature
|
|
258
|
-
- features/tests/search/pagination.feature
|
|
264
|
+
- features/tests/checkout/agency.feature
|
|
265
|
+
- features/tests/checkout/button_cac.feature
|
|
266
|
+
- features/tests/checkout/chat.feature
|
|
267
|
+
- features/tests/checkout/compras_duplicadas.feature
|
|
268
|
+
- features/tests/checkout/cupones.feature
|
|
269
|
+
- features/tests/checkout/error_messages.feature
|
|
270
|
+
- features/tests/checkout/integration.feature
|
|
271
|
+
- features/tests/checkout/low_cost.feature
|
|
272
|
+
- features/tests/checkout/new_pay_method.feature
|
|
273
|
+
- features/tests/checkout/price_difference.feature
|
|
274
|
+
- features/tests/checkout/providers.feature
|
|
275
|
+
- features/tests/checkout/seguros.feature
|
|
276
|
+
- features/tests/contents/costs.feature
|
|
277
|
+
- features/tests/contents/rules.feature
|
|
278
|
+
- features/tests/contents/webcheckin.feature
|
|
279
|
+
- features/tests/desambiguation/airports.feature
|
|
280
|
+
- features/tests/desambiguation/city.feature
|
|
281
|
+
- features/tests/filters/filters.feature
|
|
282
|
+
- features/tests/fixes/advancedgui.feature
|
|
283
|
+
- features/tests/fixes/advancednogui.feature
|
|
284
|
+
- features/tests/fixes/book_no_gui.feature
|
|
285
|
+
- features/tests/fixes/cross_sell_row_hoteles.feature
|
|
286
|
+
- features/tests/fixes/facebook.feature
|
|
287
|
+
- features/tests/fixes/landing_checkout.feature
|
|
288
|
+
- features/tests/fixes/landing_home_alerts.feature
|
|
289
|
+
- features/tests/fixes/matrix_stops.feature
|
|
290
|
+
- features/tests/fixes/one_day_search.feature
|
|
291
|
+
- features/tests/fixes/print.feature
|
|
292
|
+
- features/tests/fixes/searches_no_gui.feature
|
|
293
|
+
- features/tests/fixes/upgrade_bussines.feature
|
|
294
|
+
- features/tests/landing/landing_alerts.feature
|
|
295
|
+
- features/tests/landing/landing_filters.feature
|
|
296
|
+
- features/tests/landing/landing_home.feature
|
|
297
|
+
- features/tests/landing/landing_integration.feature
|
|
259
298
|
- features/tests/landing/landing_long_tail.feature
|
|
260
|
-
- features/tests/landing/landing_negative.feature
|
|
261
299
|
- features/tests/landing/landing_matrix.feature
|
|
262
|
-
- features/tests/landing/
|
|
263
|
-
- features/tests/landing/
|
|
264
|
-
- features/tests/landing/landing_alerts.feature
|
|
300
|
+
- features/tests/landing/landing_negative.feature
|
|
301
|
+
- features/tests/landing/landing_orders.feature
|
|
265
302
|
- features/tests/landing/landing_pagination.feature
|
|
266
303
|
- features/tests/landing/landing_passenger_review.feature
|
|
267
|
-
- features/tests/landing/landing_orders.feature
|
|
268
|
-
- features/tests/landing/landing_home.feature
|
|
269
304
|
- features/tests/landing/landing_positive.feature
|
|
270
|
-
- features/tests/landing/landing_filters.feature
|
|
271
|
-
- features/tests/landing/landing_integration.feature
|
|
272
305
|
- features/tests/landing/landing_reviews.feature
|
|
273
|
-
- features/tests/
|
|
274
|
-
- features/tests/
|
|
275
|
-
- features/tests/
|
|
276
|
-
- features/tests/
|
|
306
|
+
- features/tests/landing/landing_sort.feature
|
|
307
|
+
- features/tests/landing/landing_tags.feature
|
|
308
|
+
- features/tests/matrix/matrix_airlines.feature
|
|
309
|
+
- features/tests/matrix/matrix_fare_chart.feature
|
|
310
|
+
- features/tests/matrix/matrix_price.feature
|
|
277
311
|
- features/tests/others/alerts.feature
|
|
278
312
|
- features/tests/others/anticipatedsearch.feature
|
|
279
|
-
- features/tests/others/semaphore.feature
|
|
280
313
|
- features/tests/others/flights_tracker.feature
|
|
281
314
|
- features/tests/others/newsletter.feature
|
|
315
|
+
- features/tests/others/querystringparameters.feature
|
|
282
316
|
- features/tests/others/recommendation.feature
|
|
283
|
-
- features/tests/
|
|
284
|
-
- features/tests/
|
|
285
|
-
- features/tests/
|
|
286
|
-
- features/tests/
|
|
287
|
-
- features/tests/
|
|
288
|
-
- features/tests/
|
|
289
|
-
- features/tests/
|
|
290
|
-
- features/tests/
|
|
291
|
-
- features/tests/
|
|
292
|
-
-
|
|
293
|
-
- features/tests/fixes/landing_checkout.feature
|
|
294
|
-
- features/tests/fixes/searches_no_gui.feature
|
|
295
|
-
- features/tests/fixes/advancedgui.feature
|
|
296
|
-
- features/tests/fixes/cross_sell_row_hoteles.feature
|
|
297
|
-
- features/tests/fixes/facebook.feature
|
|
298
|
-
- features/tests/checkout/low_cost.feature
|
|
299
|
-
- features/tests/checkout/error_messages.feature
|
|
300
|
-
- features/tests/checkout/compras_duplicadas.feature
|
|
301
|
-
- features/tests/checkout/integration.feature
|
|
302
|
-
- features/tests/checkout/new_pay_method.feature
|
|
303
|
-
- features/tests/checkout/price_difference.feature
|
|
304
|
-
- features/tests/checkout/cupones.feature
|
|
305
|
-
- features/tests/checkout/chat.feature
|
|
306
|
-
- features/tests/checkout/providers.feature
|
|
307
|
-
- features/tests/checkout/seguros.feature
|
|
308
|
-
- features/tests/checkout/button_cac.feature
|
|
309
|
-
- features/tests/checkout/agency.feature
|
|
310
|
-
- features/tests/contents/webcheckin.feature
|
|
311
|
-
- features/tests/contents/costs.feature
|
|
312
|
-
- features/tests/contents/rules.feature
|
|
317
|
+
- features/tests/others/semaphore.feature
|
|
318
|
+
- features/tests/search/basefare.feature
|
|
319
|
+
- features/tests/search/errors.feature
|
|
320
|
+
- features/tests/search/itineraries.feature
|
|
321
|
+
- features/tests/search/orders.feature
|
|
322
|
+
- features/tests/search/pagination.feature
|
|
323
|
+
- features/tests/search/reviews.feature
|
|
324
|
+
- features/tests/search/searches.feature
|
|
325
|
+
- features/tests/search/wish_list.feature
|
|
326
|
+
- flights_gui_henry_tests.gemspec
|
|
313
327
|
- henry-context.yml
|
|
314
328
|
homepage:
|
|
315
329
|
licenses: []
|
|
@@ -320,17 +334,17 @@ require_paths:
|
|
|
320
334
|
- lib
|
|
321
335
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
322
336
|
requirements:
|
|
323
|
-
- -
|
|
337
|
+
- - ">="
|
|
324
338
|
- !ruby/object:Gem::Version
|
|
325
339
|
version: '0'
|
|
326
340
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
327
341
|
requirements:
|
|
328
|
-
- -
|
|
342
|
+
- - ">="
|
|
329
343
|
- !ruby/object:Gem::Version
|
|
330
344
|
version: '0'
|
|
331
345
|
requirements: []
|
|
332
346
|
rubyforge_project:
|
|
333
|
-
rubygems_version: 2.
|
|
347
|
+
rubygems_version: 2.2.2
|
|
334
348
|
signing_key:
|
|
335
349
|
specification_version: 4
|
|
336
350
|
summary: test para contents, search y advanced_search
|