ds-gui-automation 0.1.67 → 0.1.68
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/thanks.feature +2 -2
- data/lib/ds/version.rb +1 -1
- data/lib/page_objects/modules/checkout.rb +4 -3
- 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: 850037656b2cee2a6fe34348eb112d0495220ba9
|
4
|
+
data.tar.gz: e4a3e99bf2237715a7d71c566099175edfc4e0e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8847d95c63846c89a54a9f7c881cb2d3d14f5370a51aece85429a5d3803c78db54c394b85382360d503fe432df6e04f53c4554ad523cbb951d560753a4e52541
|
7
|
+
data.tar.gz: e1464ae0ea8afcb650dda846b53b8ee94acfb3603f9505bdf4aa0f11eab270a44d332428558c21300f42ab3acee5a87ecd26788a3685b8d47276af21ca3e8938
|
data/features/thanks.feature
CHANGED
@@ -43,8 +43,8 @@ Feature: Destination Services Thanks
|
|
43
43
|
@gl
|
44
44
|
Examples:
|
45
45
|
|country|tracking_id|type|
|
46
|
-
|
47
|
-
|
46
|
+
#|BR|GL_SCL_512|tours|
|
47
|
+
#|BR|GL_NYC_297|tours|
|
48
48
|
|BR|GL_SCL_519|tours|
|
49
49
|
|BR|GL_ORL_2246|tours|
|
50
50
|
|BR|GL_MVD_1619|tours|
|
data/lib/ds/version.rb
CHANGED
@@ -4,9 +4,9 @@ module Checkout
|
|
4
4
|
|
5
5
|
def fill_passenger_information
|
6
6
|
|
7
|
-
browser.text_field(:name, 'dsInputDefinition.passengerDefinitions[0].firstName.value').set('
|
7
|
+
browser.text_field(:name, 'dsInputDefinition.passengerDefinitions[0].firstName.value').set('TEST DS')
|
8
8
|
|
9
|
-
browser.text_field(:name, 'dsInputDefinition.passengerDefinitions[0].lastName.value').set('
|
9
|
+
browser.text_field(:name, 'dsInputDefinition.passengerDefinitions[0].lastName.value').set('BOT')
|
10
10
|
|
11
11
|
browser.send_keys(:enter)
|
12
12
|
|
@@ -54,7 +54,8 @@ module Checkout
|
|
54
54
|
|
55
55
|
def fill_pickup_information
|
56
56
|
|
57
|
-
browser.input(:class,'ux-destination-services-detail-hotel-radio-name').click if browser.input(:class,'ux-destination-services-detail-hotel-radio-name').present?
|
57
|
+
#browser.input(:class,'ux-destination-services-detail-hotel-radio-name').click if browser.input(:class,'ux-destination-services-detail-hotel-radio-name').present?
|
58
|
+
browser.div(:class, 'ux-destination-services-checkout-detail-hotel').radios.last.click if browser.div(:class, 'ux-destination-services-checkout-detail-hotel').radios.size > 1
|
58
59
|
|
59
60
|
end
|
60
61
|
|