ds-gui-automation 0.2.40 → 0.2.41
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/detail_steps.rb +7 -7
- data/lib/ds/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de6d5647906f307da97c3303f577be252d7fb3ae
|
|
4
|
+
data.tar.gz: 035a3c1bbb6e62595d3cfc6d8d8db314e060d5da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c0058b1939e7692738bb5a81916b5da0abf1019a920252e8520fe62287a95c06ca938596862e9dc34767fe29e94abd45cc8e00a0faa9ee5eb9dc8fdff2a2475
|
|
7
|
+
data.tar.gz: 31d9eb663a593a4a2f28f4565dcbf884a0fff4f8d7cef970ea4f3b228583a5a39a3e7f539746c9bc6aa1c9dbef81aca509d47d6337933e08857578fbd349cb72
|
|
@@ -20,7 +20,7 @@ end
|
|
|
20
20
|
|
|
21
21
|
When(/^I click on the detail button$/) do
|
|
22
22
|
|
|
23
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id(PROVIDER_ID, IS_MODULAR).first.
|
|
23
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id(PROVIDER_ID, IS_MODULAR).first.span(:class,'eva-button-primary-medium').click
|
|
24
24
|
|
|
25
25
|
end
|
|
26
26
|
|
|
@@ -34,10 +34,10 @@ When(/^I click on the detail button of the corresponding "(.*)"$/) do | tracking
|
|
|
34
34
|
|
|
35
35
|
if !new_design
|
|
36
36
|
puts 'Running with old design'
|
|
37
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id(tracking_id, IS_MODULAR).first.
|
|
37
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id(tracking_id, IS_MODULAR).first.span(:class,'eva-button-primary-medium').click
|
|
38
38
|
else
|
|
39
39
|
puts 'Running with new design'
|
|
40
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(tracking_id,new_design).first.
|
|
40
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(tracking_id,new_design).first.span(:class,'eva-button-primary-medium').click
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
end
|
|
@@ -51,10 +51,10 @@ When(/^I click on the detail button for cart tour$/) do
|
|
|
51
51
|
|
|
52
52
|
if !new_design
|
|
53
53
|
puts 'Running with old design'
|
|
54
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id(@tour_tracking_id, IS_MODULAR).first.
|
|
54
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id(@tour_tracking_id, IS_MODULAR).first.span(:class,'eva-button-primary-medium').click
|
|
55
55
|
else
|
|
56
56
|
puts 'Running with new design'
|
|
57
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(@tour_tracking_id,new_design).first.
|
|
57
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(@tour_tracking_id,new_design).first.span(:class,'eva-button-primary-medium').click
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
end
|
|
@@ -69,10 +69,10 @@ When(/^I click on the detail button for cart ticket$/) do
|
|
|
69
69
|
|
|
70
70
|
if !new_design
|
|
71
71
|
puts 'Running with old design'
|
|
72
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id(@ticket_tracking_id, IS_MODULAR).first.
|
|
72
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id(@ticket_tracking_id, IS_MODULAR).first.span(:class,'eva-button-primary-medium').click
|
|
73
73
|
else
|
|
74
74
|
puts 'Running with new design'
|
|
75
|
-
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(@ticket_tracking_id,new_design).first.
|
|
75
|
+
DestinationServicesGUI::Results.get_results_by_tracking_id_for_new_design(@ticket_tracking_id,new_design).first.span(:class,'eva-button-primary-medium').click
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
end
|
data/lib/ds/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ds-gui-automation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.41
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Santiago Ochoa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-02-
|
|
11
|
+
date: 2016-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: henry-container
|