flights_gui_tests 1.4.1 → 1.4.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89d2c1a7bde55882c708fe71d54cfaf9db66ad9c
|
4
|
+
data.tar.gz: c3622a876f25de128e648917a55639514136f5cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d91ba8a7045a0fb6765a723f3941583c6f15f40acb32deda6aec96ce5d0959f9b2e0e06713439841b41cab2ae0ea422b8f214f37944afdc4a04665c66f4f7f7
|
7
|
+
data.tar.gz: 3310f5f31596c7ed4f023bdebcb04d7e8024d2ba2957ea1c7cf368fc92e253b4314951302f46aca045caac28a99e763bb5b6b95b66c4fa8fc7252f1e8aa173bf
|
@@ -34,9 +34,8 @@ module NewCheckout
|
|
34
34
|
def cargar_datos_facturacion_ar
|
35
35
|
option = ["FINAL","INSCR","EXENT","MONOTRIBUTO"][rand(4)]
|
36
36
|
situacion_fiscal_element.select_value(option)
|
37
|
-
sleep(
|
37
|
+
sleep(2)
|
38
38
|
#lleno los campos requeridos
|
39
|
-
cuil_element.set("30643063936")
|
40
39
|
nombre_facturacion_element.set("diego qa romero") if nombre_facturacion_element.present?
|
41
40
|
provincia_facturacion_element.select_value("C")
|
42
41
|
set_autocomplete("ciudad_facturacion_custom","buenos ")
|
@@ -45,6 +44,7 @@ module NewCheckout
|
|
45
44
|
numero_facturacion_element.set("123")
|
46
45
|
piso_facturacion_element.set("1")
|
47
46
|
departamento_facturacion_element.set("1")
|
47
|
+
cuil_element.set("30643063936")
|
48
48
|
end
|
49
49
|
|
50
50
|
def cargar_datos_facturacion_br
|
data/features/support/version.rb
CHANGED