flights_gui_tests 2.4.22 → 2.4.23
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 +1 -1
- data/features/support/modules/checkout/new_checkout/pasajeros.rb +1 -1
- data/features/support/modules/checkout/new_checkout/tarjeta.rb +2 -2
- data/features/support/pages/all_pages.rb +5 -1
- data/features/support/version.rb +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: 9cb93a79f45ac07d47f52e21fca117d0f70bb3de
|
|
4
|
+
data.tar.gz: e84c079fececf0b8eaa468142fd0c68d7b1fb5c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afa81a15db706c585a5fdfe36fccb027b0263b4ae2b7a1000f54db566f5d3603c16793c2ce798e4901887928da45ab532923ed261519c1b481c00f6a93c6ac25
|
|
7
|
+
data.tar.gz: 6e0bc1bf3e2ac4e0a9ded329b2d96a29b969ff3b751599bd544cd6df3ca15f6f14f6f0ef48941b906c4a04f89586c28e99d5e6ba100208e466dfa4cbcdfec3f0
|
|
@@ -70,7 +70,7 @@ Y(/^(?:verifico|valido) que los datos cargados sean mostrados correctamente al l
|
|
|
70
70
|
@itinerario_checkout = @page.datos_itinerario
|
|
71
71
|
data = ["A","B","C","D","E","F","G","H","I","J","k"]
|
|
72
72
|
index = 0
|
|
73
|
-
RUTS = ["
|
|
73
|
+
RUTS = ["244347355","212257230","240300753","124742668","236699269","220166767","70281686","224395906","191241134","225227209","198547972","203136633"]
|
|
74
74
|
@page.manage_data.adt.times do |adulto|
|
|
75
75
|
(doc/"div.ticket-left li.passenger span.names span.first-name span.value")[index].inner_text.should equal("Diego QA#{data[index]}")
|
|
76
76
|
(doc/"div.ticket-left li.passenger span.names span.last-name span.value")[index].inner_text.should equal("Romero#{data[index]}")
|
|
@@ -17,7 +17,7 @@ module NewCheckout
|
|
|
17
17
|
div(:edades_adultos,:id=>"birthday-group-0")
|
|
18
18
|
|
|
19
19
|
PLUS_NAME = ["A","B","C","D","E","F","G","H","I","J","k"]
|
|
20
|
-
RUTS = ["
|
|
20
|
+
RUTS = ["244347355","212257230","240300753","124742668","236699269","220166767","70281686","224395906","191241134","225227209","198547972","203136633"]
|
|
21
21
|
|
|
22
22
|
def cargar_adultos
|
|
23
23
|
@index = 0
|
|
@@ -115,7 +115,7 @@ module NewCheckout
|
|
|
115
115
|
nombre_titular_tarjeta_element.set "Martin qa diez"
|
|
116
116
|
if documento_titular_tarjeta_element.present?
|
|
117
117
|
number = case AllPages.site
|
|
118
|
-
when "CL" then "
|
|
118
|
+
when "CL" then "70281686"
|
|
119
119
|
when "BR" then "22233366638"
|
|
120
120
|
else "32456324"
|
|
121
121
|
end
|
|
@@ -140,7 +140,7 @@ module NewCheckout
|
|
|
140
140
|
nombre_titular_tarjeta_element.set "Martin qa diez"
|
|
141
141
|
if documento_titular_tarjeta_element.present?
|
|
142
142
|
number = case AllPages.site
|
|
143
|
-
when "CL" then "
|
|
143
|
+
when "CL" then "70281686"
|
|
144
144
|
when "BR" then "22233366638"
|
|
145
145
|
else "32456324"
|
|
146
146
|
end
|
|
@@ -30,7 +30,11 @@ class AllPages
|
|
|
30
30
|
@browser.alert.ok if @browser.alert.exists?
|
|
31
31
|
rescue Net::ReadTimeout
|
|
32
32
|
puts "Rompe Net::ReadTimeout"
|
|
33
|
-
|
|
33
|
+
begin
|
|
34
|
+
@browser.goto url
|
|
35
|
+
rescue Net::ReadTimeout
|
|
36
|
+
puts "Rompe Net::ReadTimeout por segunda vez"
|
|
37
|
+
end
|
|
34
38
|
end
|
|
35
39
|
end
|
|
36
40
|
|
data/features/support/version.rb
CHANGED