flights_gui_tests 2.1.4 → 2.1.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/load_steps.rb +1 -1
- data/features/step_definitions/checkout/verifications_steps.rb +2 -2
- data/features/step_definitions/landing/load_steps.rb +1 -1
- data/features/step_definitions/thanks/thanks_steps.rb +18 -11
- data/features/support/classes/checkout/new_cluster.rb +1 -1
- data/features/support/classes/price.rb +4 -0
- data/features/support/classes/thanks/cluster.rb +28 -32
- data/features/support/modules/checkout/new_checkout/tarjeta.rb +3 -9
- data/features/support/pages/checkout/checkout_page.rb +8 -2
- data/features/support/pages/thanks/thanks_page.rb +5 -1
- data/features/support/version.rb +1 -1
- data/features/tests/checkout/book_ok.feature +1 -1
- data/features/tests/checkout/braspag.feature +0 -1
- data/features/tests/checkout/debito.feature +0 -1
- data/features/tests/checkout/error_messages.feature +0 -1
- data/features/tests/checkout/fast_checkout.feature +0 -1
- data/features/tests/checkout/ingresos_brutos.feature +0 -1
- data/features/tests/checkout/last_minute.feature +0 -1
- data/features/tests/checkout/low_cost.feature +0 -1
- data/features/tests/checkout/price_jump.feature +0 -1
- data/features/tests/checkout/providers.feature +0 -1
- data/features/tests/checkout/seguros.feature +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c01cdb4fdda44983b57ad2c476eff0721e27ce70
|
4
|
+
data.tar.gz: 2edda536145b3370a33ec7c3f71cf12032939546
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7082fb48ac37d1e82751810c924c8a38eb467e18bfabef87d97b359d0f7bf0d321b78e5e575daf3a866afbff1ead212adb7894d1c3b86fa8d527bd43d72eaed7
|
7
|
+
data.tar.gz: 6d719f6d28bfb10ce0ce1dbd92f83040d27077850ec1a611de712cc3e0e8e170d46b65712c6c8325575eda5ecb0414ba21c703c6eed9e6a4ca1aa52ebdbcca30
|
@@ -66,7 +66,7 @@ Y(/^(?:verifico|valido) si no trae errores$/) do
|
|
66
66
|
if (pagina/"div#errorInfo").length>0
|
67
67
|
raise((pagina/"div#errorInfo").inner_html)
|
68
68
|
end
|
69
|
-
pending(@page.notificacion_warning_ux_element.text) unless @page.popup_nuevo_vuelo_element.present? or @page.checkout_id_element.present? or @page.checkout_id_cash_element.present? or @page.notificacion_warning_ux_element.text.downcase.no_accents.match("viaja sin asistencia|viaja sem assistencia")
|
69
|
+
pending(@page.notificacion_warning_ux_element.text) unless @page.popup_asistencia_al_viajero_element.present? or @page.popup_nuevo_vuelo_element.present? or @page.checkout_id_element.present? or @page.checkout_id_cash_element.present? or @page.notificacion_warning_ux_element.text.downcase.no_accents.match("viaja sin asistencia|viaja sem assistencia")
|
70
70
|
end
|
71
71
|
if @page.mensaje_error_ux_element.present?
|
72
72
|
pending(@page.mensaje_error_ux_element.text) unless @page.popup_nuevo_vuelo_element.present? or @page.checkout_id_element.present? or @page.checkout_id_cash_element.present?
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
Entonces(/^(?:verifico|valido) los valores del desglose del checkout$/) do
|
3
3
|
@itinerario_checkout = @page.datos_itinerario
|
4
|
-
|
4
|
+
@itinerario_checkout.validar_suma_desgloce.should be_within(4).of(@itinerario_checkout.tarifas['total'].value)
|
5
5
|
unless @itinerario_checkout.tarifas['adt'].valor.zero?
|
6
6
|
@itinerario_checkout.tarifas['adt'].valor.should be_within(4).of(@itinerario_checkout.tarifas['tarifa_adulto'].valor * @page.manage_data.adt)
|
7
7
|
end
|
@@ -13,7 +13,7 @@ Entonces(/^(?:verifico|valido) los valores del desglose del checkout$/) do
|
|
13
13
|
value.value.should be_within(4).of(@itinerario_checkout.tarifas[key].value)
|
14
14
|
end
|
15
15
|
end
|
16
|
-
|
16
|
+
end
|
17
17
|
end
|
18
18
|
|
19
19
|
Y(/^(?:verifico|valido) que se muestren la caja de clientes felices$/) do
|
@@ -37,7 +37,7 @@ end
|
|
37
37
|
|
38
38
|
Y(/^(?:verifico|valido) la pagina donde ingresa$/) do
|
39
39
|
@page_results = Results::SearchPage.new($browser)
|
40
|
-
@page_checkout = Checkout::
|
40
|
+
@page_checkout = Checkout::NewCheckoutPage.new($browser)
|
41
41
|
puts " URL: #{@page.url}"
|
42
42
|
Watir::Wait.until(timeout = 300){@page_results.carga_element.present? or @page_results.itinerario_element.present? or @page_checkout.pasajeros_element.present? or @page_checkout.notificacion_warning_element.present?}
|
43
43
|
if @page_checkout.pasajeros_element.present? or @page_checkout.notificacion_warning_element.present?
|
@@ -2,13 +2,13 @@
|
|
2
2
|
Entonces(/^(?:verifico|valido) el link de mi despegar$/) do
|
3
3
|
if @page.new_thanks?
|
4
4
|
if AllPages.site=~/BR|PT/
|
5
|
-
@page.link_mi_despegar_element.text.no_accents.downcase.should match("
|
5
|
+
@page.link_mi_despegar_element.text.no_accents.downcase.should match("administre a sua (compra|solicitacao de compra) pela minha reserva")
|
6
6
|
@page.link_mi_despegar_element.link(:class,"booking-button eva-button-secondary-medium").should visible
|
7
7
|
elsif AllPages.site=~/CN|US|IN/
|
8
|
-
@page.link_mi_despegar_element.text.no_accents.downcase.should match("
|
8
|
+
@page.link_mi_despegar_element.text.no_accents.downcase.should match("manage your (purchase|request) from my booking")
|
9
9
|
@page.link_mi_despegar_element.link(:class,"booking-button eva-button-secondary-medium").should visible
|
10
10
|
else
|
11
|
-
@page.link_mi_despegar_element.text.no_accents.downcase.should match("
|
11
|
+
@page.link_mi_despegar_element.text.no_accents.downcase.should match("gestiona tu (compra|solicitud) desde mi reserva")
|
12
12
|
@page.link_mi_despegar_element.link(:class,"booking-button eva-button-secondary-medium").should visible
|
13
13
|
end
|
14
14
|
else
|
@@ -39,14 +39,21 @@ end
|
|
39
39
|
|
40
40
|
Entonces(/^(?:verifico|valido) los datos del vuelo comprado$/) do
|
41
41
|
@cluster_json = @page.get_results_search_service
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
42
|
+
if @page.new_thanks?
|
43
|
+
itinerario_gracias = Hpricot.parse(@page.desglose_gracias_element.html)
|
44
|
+
itinerario_gracias.inner_text.empty?.should_not be_true
|
45
|
+
@monto_total=(itinerario_gracias/"span#total-price span.amount").inner_text.gsub(/\.|\,/,'').to_i
|
46
|
+
@itinerario_gracias = @page.datos_itinerario
|
47
|
+
else
|
48
|
+
@page.ver_desglose_gracias_element.should visible("Link para popup de detalle de vuelo")
|
49
|
+
@page.ver_desglose_gracias_element.click
|
50
|
+
@page.popup_desglose_gracias_element.when_visible(timeout=20)
|
51
|
+
itinerario_gracias = Hpricot.parse(@page.popup_desglose_gracias_element.html)
|
52
|
+
itinerario_gracias.inner_text.empty?.should_not be_true
|
53
|
+
@monto_total=(itinerario_gracias/"span#total-price span.amount").inner_text.gsub(/\.|\,/,'').to_i
|
54
|
+
@itinerario_gracias = @page.datos_itinerario
|
55
|
+
@page.cerrar_popup_desglose_gracias_element.click
|
56
|
+
end
|
50
57
|
end
|
51
58
|
|
52
59
|
Entonces(/^(?:verifico|valido) el popup de asistencia al viajero$/) do
|
@@ -69,7 +69,7 @@ module NewCheckout
|
|
69
69
|
@tarifas['afip'] = (html/"li.tax_afip").first ? Price.new((html/"li.tax_afip span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
70
70
|
@tarifas['encargos'] = (html/"li.service_taxes").first ? Price.new((html/"li.service_taxes span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
71
71
|
@tarifas['seguros'] = (html/"li.destination_service_insurance").first ? Price.new((html/"li.destination_service_insurance span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
72
|
-
@tarifas['descuento'] = (html/"li.payment_discount").first ? Price.new((html/"li.payment_discount span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
72
|
+
@tarifas['descuento'] = (html/"li.payment_discount").first ? Price.new((html/"li.payment_discount span.price-currency span.currency").first.inner_text.strip+" "+((html/"li.payment_discount span.price-currency span.amount").first.inner_text.strip.gsub(/\D/,'').to_i*-1).to_s) : Price.new("$ 0",true)
|
73
73
|
@tarifas['total'] = (html/"span#total-price").first ? Price.new((html/"span#total-price").first.inner_text.strip) : Price.new("$ 0",true)
|
74
74
|
end
|
75
75
|
|
@@ -5,54 +5,50 @@ module Thanks
|
|
5
5
|
|
6
6
|
def initialize(itinerario,html,page = 0)
|
7
7
|
@fechas = []
|
8
|
-
self.cargar_precios((html/"div
|
8
|
+
self.cargar_precios((html/"div#price-info"))
|
9
9
|
eval "#{itinerario.downcase}(html)"
|
10
10
|
end
|
11
11
|
|
12
12
|
def roundtrip(html)
|
13
|
-
|
14
|
-
@ida
|
15
|
-
|
16
|
-
@vuelta
|
13
|
+
@idas = cargar_tramos((html/"li.itinerary"))
|
14
|
+
@ida = @idas.first
|
15
|
+
@vueltas = cargar_tramos((html/"li.itinerary"))
|
16
|
+
@vuelta = @vueltas.first
|
17
17
|
end
|
18
18
|
|
19
19
|
def oneway(html)
|
20
|
-
|
21
|
-
@ida =
|
20
|
+
@idas = cargar_tramos((html/"li.itinerary"))
|
21
|
+
@ida = @idas.first
|
22
22
|
end
|
23
23
|
|
24
24
|
def multipledestinations(html)
|
25
|
-
data = (html/"div.
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
@vuelta = DataCluster.new(tramos.first['salida']['nombre'], tramos.last['llegada']['nombre'], tramos.first['salida']['fecha'], tramos.collect{|tramo| tramo['aerolinea']}, escala_to_i((html/"div.outbound-route span.stops").inner_text.strip), tramos.first['salida']['iata'], tramos.last['llegada']['iata'], tramos.first['salida']['horario'], tramos.last['llegada']['horario'])
|
25
|
+
data = (html/"div.multiple")
|
26
|
+
@idas = cargar_tramos(data.first)
|
27
|
+
@ida = @idas.first
|
28
|
+
@vueltas = @idas
|
29
|
+
@vuelta = @vueltas.last
|
31
30
|
end
|
32
31
|
|
33
32
|
def cargar_tramos(lista_tramos)
|
34
33
|
tramos = Array.new
|
35
|
-
lista_tramos.each{ |segmento| tramos << cargar_tramo(segmento)}
|
34
|
+
(lista_tramos/"li.cluster-item").each{ |segmento| tramos << cargar_tramo((lista_tramos/"div.data"),segmento)}
|
36
35
|
return tramos
|
37
36
|
end
|
38
37
|
|
39
|
-
def cargar_tramo(segmento)
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
vuelo_tmp['horario'] = (vuelo/"li.time").inner_text.gsub(/hs/,'').strip
|
54
|
-
return vuelo_tmp
|
55
|
-
end
|
38
|
+
def cargar_tramo(info_ruta,segmento)
|
39
|
+
aerolineas = (segmento/"li.airlines img").collect{|aerolinea| aerolinea.attributes['src'].match(/(..).png/)[1].upcase}
|
40
|
+
return DataCluster.new( (info_ruta/"span.city-departure").inner_text.strip.no_accents.gsub(/,/,''), #nombre ciudad salida
|
41
|
+
(info_ruta/"span.city-arrival").inner_text.strip.no_accents.gsub(/,/,''), #nombre ciudad llegada
|
42
|
+
(info_ruta/"span.date").inner_text.strip, #fecha
|
43
|
+
aerolineas, #aerolineas
|
44
|
+
escala_to_i((segmento/"span.stops-text").inner_text.strip), #escalas
|
45
|
+
(info_ruta/"span.airport").first.inner_text.strip.no_accents, #iata ciudad salida
|
46
|
+
(info_ruta/"span.airport").last.inner_text.strip.no_accents, #iata ciudad llegada
|
47
|
+
Time.parse((segmento/"span.hour").first.inner_text.strip), #horario salida
|
48
|
+
Time.parse((segmento/"span.hour").last.inner_text.strip), #horario llegada
|
49
|
+
(segmento/"li.time").inner_text.strip #duracion
|
50
|
+
)
|
51
|
+
end
|
56
52
|
|
57
53
|
def cargar_precios(html)
|
58
54
|
@tarifas = Hash.new
|
@@ -69,7 +65,7 @@ module Thanks
|
|
69
65
|
@tarifas['afip'] = (html/"li.tax_afip").first ? Price.new((html/"li.tax_afip span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
70
66
|
@tarifas['encargos'] = (html/"li.service_taxes").first ? Price.new((html/"li.service_taxes span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
71
67
|
@tarifas['seguros'] = (html/"li.destination_service_insurance").first ? Price.new((html/"li.destination_service_insurance span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
72
|
-
@tarifas['descuento'] = (html/"li.payment_discount").first ? Price.new((html/"li.payment_discount span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
|
68
|
+
@tarifas['descuento'] = (html/"li.payment_discount").first ? Price.new((html/"li.payment_discount span.price-currency span.currency").first.inner_text.strip+" "+((html/"li.payment_discount span.price-currency span.amount").first.inner_text.strip.gsub(/\D/,'').to_i*-1).to_s) : Price.new("$ 0",true)
|
73
69
|
@tarifas['total'] = (html/"span#total-price").first ? Price.new((html/"span#total-price").first.inner_text.strip) : Price.new("$ 0",true)
|
74
70
|
end
|
75
71
|
|
@@ -69,9 +69,7 @@ module NewCheckout
|
|
69
69
|
divs(:opciones_pago,:class=>'installment-info')
|
70
70
|
|
71
71
|
def cargar_datos_tarjeta
|
72
|
-
|
73
|
-
provider = data["result"]["data"]["items"][0]["provider"]
|
74
|
-
@provider = provider
|
72
|
+
@provider = self.provider
|
75
73
|
if debito.no_accents.downcase.match(/debito/)
|
76
74
|
radios_opciones_pago_elements[1].set
|
77
75
|
else
|
@@ -114,9 +112,7 @@ module NewCheckout
|
|
114
112
|
end
|
115
113
|
|
116
114
|
def cargar_datos_tarjeta_nuevo_formulario
|
117
|
-
|
118
|
-
provider = data["result"]["data"]["items"][0]["provider"]
|
119
|
-
@provider = provider
|
115
|
+
@provider = self.provider
|
120
116
|
un_pago_visa_element.click
|
121
117
|
sleep(1)
|
122
118
|
cuotas_element.select_value("1_CREDIT_VI_null")
|
@@ -157,9 +153,7 @@ module NewCheckout
|
|
157
153
|
end
|
158
154
|
|
159
155
|
def cargar_datos_extras_de_tarjeta
|
160
|
-
|
161
|
-
provider = data["result"]["data"]["items"][0]["provider"]
|
162
|
-
@provider = provider
|
156
|
+
@provider = self.provider
|
163
157
|
if provider == "VOL"
|
164
158
|
ciudad_entrega_tarjeta_element.set "Y Ciudad" if ciudad_entrega_tarjeta_element.present?
|
165
159
|
calle_entrega_tarjeta_element.set "Y Calle" if calle_entrega_tarjeta_element.present?
|
@@ -13,7 +13,8 @@ module Checkout
|
|
13
13
|
link(:cupon_validar,:id=>"validate-voucher")
|
14
14
|
link(:link_cobertura,:class=>"coverage")
|
15
15
|
link(:enviar_preguntas_riesgo,:id=>"submit")
|
16
|
-
|
16
|
+
|
17
|
+
div(:popup_asistencia_al_viajero,:id=>"insurance-recommendation-popup")
|
17
18
|
divs(:secciones_preguntas_riesgo,:class=>"item section radio-group group")
|
18
19
|
|
19
20
|
div(:desglose_gracias,:class=>"boxes")
|
@@ -94,7 +95,12 @@ module Checkout
|
|
94
95
|
end
|
95
96
|
|
96
97
|
def provider
|
97
|
-
@provider
|
98
|
+
if @provider
|
99
|
+
return @provider
|
100
|
+
else
|
101
|
+
traking_info = buscar_script_con_texto("trackingInfo")
|
102
|
+
@provider = traking_info.first.inner_text.match("(.+)provider\":\"(.+)\",\"p")[2]
|
103
|
+
end
|
98
104
|
end
|
99
105
|
|
100
106
|
def new_thanks?
|
@@ -4,7 +4,7 @@ module Thanks
|
|
4
4
|
|
5
5
|
include Pages::Tags
|
6
6
|
|
7
|
-
|
7
|
+
div(:desglose_gracias,:class=>"boxes")
|
8
8
|
|
9
9
|
def get_results_search_service(type="TOTALFARE")
|
10
10
|
if $HENRY_PARAMS["streaming"]
|
@@ -20,5 +20,9 @@ module Thanks
|
|
20
20
|
return json
|
21
21
|
end
|
22
22
|
|
23
|
+
def new_thanks?
|
24
|
+
desglose_gracias_element.present?
|
25
|
+
end
|
26
|
+
|
23
27
|
end
|
24
28
|
end
|
data/features/support/version.rb
CHANGED
@@ -16,7 +16,7 @@ Característica: checkout.book_ok
|
|
16
16
|
Entonces verifico que la pagina no rompa
|
17
17
|
Y espero que termine de cargar la pagina de checkout
|
18
18
|
Y verifico que ingrese al checkout
|
19
|
-
|
19
|
+
Cuando ingreso al checkout con cookie "showNewThanks" al "5"
|
20
20
|
Entonces si existe la opcion de cobertura, elijo "no_chequear" si quiero cobertura
|
21
21
|
Y valido los valores del desglose del checkout
|
22
22
|
Y verifico el pixel de Efrontier
|
@@ -14,7 +14,6 @@ Característica: checkout.braspag
|
|
14
14
|
Cuando elijo un itinerario y paso a checkout
|
15
15
|
Cuando espero que termine de cargar la pagina de checkout
|
16
16
|
Entonces verifico que ingrese al checkout
|
17
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
18
17
|
Y verifico que la pagina no rompa
|
19
18
|
Entonces cargo los pasajeros
|
20
19
|
Y cargo los datos para pago debito braspag
|
@@ -16,7 +16,6 @@ Característica: checkout.debito
|
|
16
16
|
Entonces verifico que la pagina no rompa
|
17
17
|
Y espero que termine de cargar la pagina de checkout
|
18
18
|
Y verifico que ingrese al checkout
|
19
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
20
19
|
Y valido los valores del desglose del checkout
|
21
20
|
Entonces cargo los pasajeros
|
22
21
|
Y cargo los datos de la tarjeta de debito
|
@@ -15,7 +15,6 @@ Característica: checkout.error_messages
|
|
15
15
|
Entonces verifico que la pagina no rompa
|
16
16
|
Y espero que termine de cargar la pagina de checkout
|
17
17
|
Y verifico que ingrese al checkout
|
18
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
19
18
|
Y verifico las nacionalidades de los pasajeros
|
20
19
|
Y si el site es "AR|MX|PE", verifico que se muestren los campos de factura
|
21
20
|
Y si el site es "AR|MX|PE", verifico texto de error de campos de factura vacio
|
@@ -15,7 +15,6 @@ Característica: checkout.fast_checkout
|
|
15
15
|
Entonces verifico que la pagina no rompa
|
16
16
|
Y espero que termine de cargar la pagina de checkout
|
17
17
|
Y verifico que ingrese al checkout
|
18
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
19
18
|
Cuando me logueo como usuario "bookingvuelos@despegar.com" y pass "despegar"
|
20
19
|
Y espero que termine de cargar la pagina de checkout
|
21
20
|
Cuando verifico que ingrese al checkout
|
@@ -16,7 +16,6 @@ Característica: checkout.ingresos_brutos
|
|
16
16
|
Entonces verifico que la pagina no rompa
|
17
17
|
Y espero que termine de cargar la pagina de checkout
|
18
18
|
Y verifico que ingrese al checkout
|
19
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
20
19
|
Entonces cargo los pasajeros
|
21
20
|
Y cargo los datos de la tarjeta
|
22
21
|
Y cargo los datos de ingresos brutos
|
@@ -19,7 +19,6 @@ Característica: checkout.last_minute
|
|
19
19
|
Entonces verifico que la pagina no rompa
|
20
20
|
Y espero que termine de cargar la pagina de checkout
|
21
21
|
Y verifico que ingrese al checkout
|
22
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
23
22
|
* verifico el mensaje de last minute con texto "¡Apurese! Este vuelo sale en .{1,2} horas.|¡Apurese! Este vuelo de (.+) a (.+) sale en .{1,2} horas."
|
24
23
|
* verifico el mensaje de last minute con texto "Compre y reciba el ticket electronico con la mayor rapidez."
|
25
24
|
Entonces cargo los pasajeros
|
@@ -19,7 +19,6 @@ Característica: checkout.low_cost
|
|
19
19
|
Entonces verifico que la pagina no rompa
|
20
20
|
Y espero que termine de cargar la pagina de checkout
|
21
21
|
Y verifico que ingrese al checkout
|
22
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
23
22
|
Y valido los valores del desglose del checkout
|
24
23
|
Y verifico el pixel de Efrontier
|
25
24
|
Y verifico el pixel de trackeame en checkout
|
@@ -15,7 +15,6 @@ Característica: checkout.price_jump
|
|
15
15
|
Entonces verifico que la pagina no rompa
|
16
16
|
Y espero que termine de cargar la pagina de checkout
|
17
17
|
Y verifico que ingrese al checkout
|
18
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
19
18
|
Entonces cargo los pasajeros
|
20
19
|
Y cargo los datos de la tarjeta
|
21
20
|
Y elijo mas de una cuota con intereses
|
@@ -20,7 +20,6 @@ Característica: checkout.providers
|
|
20
20
|
Entonces verifico que la pagina no rompa
|
21
21
|
Y espero que termine de cargar la pagina de checkout
|
22
22
|
Y verifico que ingrese al checkout
|
23
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
24
23
|
Y valido los valores del desglose del checkout
|
25
24
|
Y verifico el pixel de Efrontier
|
26
25
|
Y verifico el pixel de trackeame en checkout
|
@@ -15,7 +15,6 @@ Característica: checkout.seguros
|
|
15
15
|
Entonces verifico que la pagina no rompa
|
16
16
|
Y espero que termine de cargar la pagina de checkout
|
17
17
|
Y verifico que ingrese al checkout
|
18
|
-
Entonces si ingreso por keeper, ingreso al checkout con cookie "useNewBookingProvider" al "0"
|
19
18
|
Cuando existe la opcion de cobertura
|
20
19
|
Entonces elijo "no_chequear" si quiero cobertura
|
21
20
|
Entonces verifico que se muestre correctamente la caja de seguro sin chequear
|
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: 2.1.
|
4
|
+
version: 2.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lgonzalez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: henry-container
|