flights_gui_tests 1.3.6 → 1.3.7
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2db9c515855e405e974cb7da48d1be72aa8c484
|
|
4
|
+
data.tar.gz: 55c899ff28fc407add83c9b8ca33f63c6a03f4ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f32c7abf18080a8d63828b5178c6ce9c5c81b9a2d87af90e0f945abd57a190c693faac993ca4a475f137c50b948940b31529679a857d9e905321075e51980884
|
|
7
|
+
data.tar.gz: 4c1b417a7fd1dcac80d7030bc8582083bb7f235ba546ab53ce16507962b2dbe4063ba883b7bb3bbaf4ec4ce41df3d7f5e5068895eacc9f537b5301a16934abaa
|
|
@@ -232,7 +232,7 @@ end
|
|
|
232
232
|
|
|
233
233
|
Entonces(/^(?:verifico|valido) texto de error de campos de factura vacio$/) do
|
|
234
234
|
@page.comprar_element.click
|
|
235
|
-
@page.error_cuit_vacio_element.text.no_accents.should match("
|
|
235
|
+
@page.error_cuit_vacio_element.text.no_accents.should match("Ingrese el RFC de la razon social informada|Ingrese un numero de RUC|Ingrese el CUI")
|
|
236
236
|
if AllPages.site=="MX"
|
|
237
237
|
@page.error_razon_social_vacio_element.text.no_accents.should match("Por favor, ingrese el nombre o razon social")
|
|
238
238
|
@page.error_mail_facturacion_vacio_element.text.no_accents.should match("Por favor, ingrese el e-mail donde desea recibir la factura fiscal")
|
|
@@ -4,7 +4,7 @@ Entonces(/^(?:verifico|valido) el link de mi despegar$/) do
|
|
|
4
4
|
@page.link_mi_despegar_element.text.no_accents.downcase.should match("em caso de duvidas, acesse")
|
|
5
5
|
@page.link_mi_despegar_element.link(:id,"my-despegar-link").should visible
|
|
6
6
|
elsif AllPages.site=="US"
|
|
7
|
-
@page.link_mi_despegar_element.text.no_accents.downcase.should match("if you have any questions,
|
|
7
|
+
@page.link_mi_despegar_element.text.no_accents.downcase.should match("if you have any questions, login to my bookings")
|
|
8
8
|
@page.link_mi_despegar_element.link(:id,"my-despegar-link").should visible
|
|
9
9
|
else
|
|
10
10
|
@page.link_mi_despegar_element.text.no_accents.downcase.should match("ante cualquier consulta, ingresa a")
|
|
@@ -73,6 +73,8 @@ module NewCheckout
|
|
|
73
73
|
calle_facturacion_element.set("corrientes") if calle_facturacion_element.present?
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
+
alias :cargar_datos_facturacion_ec :cargar_datos_facturacion_pe
|
|
77
|
+
|
|
76
78
|
def cargar_datos_facturacion_mx
|
|
77
79
|
check_invoice_check if invoice_check?
|
|
78
80
|
cuil_element.set("33344455561") if cuil_element.present?
|
data/features/support/version.rb
CHANGED