flights_gui_tests 0.4.8 → 0.4.9
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/verifications_steps.rb +4 -0
- data/features/support/modules/checkout/new_checkout/datos_de_facturacion.rb +1 -1
- data/features/support/modules/checkout/old_checkout/datos_de_facturacion.rb +1 -1
- data/features/support/modules/checkout/old_checkout/tarjeta.rb +1 -1
- data/flights_gui_tests.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bd8dae2f4ed9bd9789cb72aafc5c636058c45b3
|
4
|
+
data.tar.gz: e3bf2baf8bcf5f2d1e50f215cbd44e72d56cbfbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f910260e6a9255af5ef5a707675c69d0e2c5a92ae05b884fd76530510ed2e8a8519389ba9e2acae99030b9282ba145ebe8bc34f6bddbc7916f30511ffd0e650d
|
7
|
+
data.tar.gz: 546cc4f98ce2ca203f4ad6d82a91fe9b42865d4b326424f727bf74c0e234acdbe36c8e3892c118df1fbbb096be94b06cb07af2b9ca4b09ac31e62155e9b44995
|
@@ -32,10 +32,14 @@ Y(/^(?:verifico|valido) que se muestren la caja de clientes felices$/) do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
Cuando(/^(?:verifico|valido) que los precios de las cuotas se muestran correctamente$/) do
|
35
|
+
@page.cerrar_popup_cantidad_visitantes_element.click if @page.cerrar_popup_cantidad_visitantes_element.present?
|
36
|
+
@page.cerrar_popup_chat_element.click if @page.popup_chat_element.present?
|
35
37
|
@page.verificar_tipos_de_pago
|
36
38
|
end
|
37
39
|
|
38
40
|
Cuando(/^(?:verifico|valido) que los precios de las formas de pago nueva se muestren correctamente$/) do
|
41
|
+
@page.cerrar_popup_cantidad_visitantes_element.click if @page.cerrar_popup_cantidad_visitantes_element.present?
|
42
|
+
@page.cerrar_popup_chat_element.click if @page.popup_chat_element.present?
|
39
43
|
@page.verificar_nuevos_tipos_de_pago
|
40
44
|
end
|
41
45
|
|
@@ -58,7 +58,7 @@ module NewCheckout
|
|
58
58
|
# departamento_facturacion_element.set("1")
|
59
59
|
else
|
60
60
|
check_invoice_check if invoice_check?
|
61
|
-
cuil_element.set("
|
61
|
+
cuil_element.set("33344455561") if cuil_element.present?
|
62
62
|
nombre_facturacion_element.set("diego qa romero") if nombre_facturacion_element.present?
|
63
63
|
provincia_facturacion_element.select(provincia_facturacion_options[2]) if provincia_facturacion_element.present?
|
64
64
|
ciudad_facturacion_element.set("Rosario") if ciudad_facturacion_element.present?
|
@@ -58,7 +58,7 @@ module Checkout
|
|
58
58
|
# departamento_facturacion_element.set("1")
|
59
59
|
else
|
60
60
|
check_invoice_check if invoice_check?
|
61
|
-
cuil_element.set("
|
61
|
+
cuil_element.set("33344455561") if cuil_element.present?
|
62
62
|
nombre_facturacion_element.set("diego qa romero") if nombre_facturacion_element.present?
|
63
63
|
provincia_facturacion_element.select(provincia_facturacion_options[2]) if provincia_facturacion_element.present?
|
64
64
|
ciudad_facturacion_element.set("Rosario") if ciudad_facturacion_element.present?
|
data/flights_gui_tests.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
|
|
14
14
|
|
15
15
|
gem.require_paths = ["lib"] # Usualmente es solo lib -> ["lib"]
|
16
16
|
|
17
|
-
gem.version = '0.4.
|
17
|
+
gem.version = '0.4.9' # 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.39')
|
20
20
|
gem.add_dependency('page-object')
|