ds-gui-automation 0.2.51 → 0.2.52
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: 2926aff072c59cb4014fbeb00500508b5aa0e658
|
4
|
+
data.tar.gz: 51e16ebc4c83087c6b80f27c2da677a84375dbfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c60c83a879951ea8e2faf94f1ad5768d0f138b0497356c79e90f9a8b76b4638e639f498caa09f452194ba7dc776dee32cf600886b44ec5383a41697efba86ed7
|
7
|
+
data.tar.gz: bf2236a385c70ff62d7194e9aebecb91fdd9cd33cb6d0c8f5a44fd8bb7d20cbefb289722f29fd15b7e2634247c3e2fb84e0797ee3ab7763d3d0caf5aa2051e4f
|
@@ -221,12 +221,14 @@ end
|
|
221
221
|
|
222
222
|
Given(/^I proceed to transfer checkout$/) do
|
223
223
|
|
224
|
-
|
224
|
+
sleep 10
|
225
225
|
|
226
|
-
|
226
|
+
clusters = @browser.as(:class, 'ux-button primary').to_a
|
227
227
|
|
228
|
-
|
228
|
+
binding.pry
|
229
229
|
|
230
|
-
|
230
|
+
raise "No results found for the specified destination ==> #{@browser.url}" unless !clusters.empty?
|
231
231
|
|
232
|
+
clusters.to_a.shuffle.first.click
|
232
233
|
|
234
|
+
end
|
@@ -168,7 +168,7 @@ Given(/^I perform a transfer search in "(.*?)" with destination "(.*?)"$/) do |c
|
|
168
168
|
|
169
169
|
DestinationServicesGUI::Results.wait_for_transfer_results
|
170
170
|
|
171
|
-
|
171
|
+
sleep 10
|
172
172
|
|
173
173
|
## DestinationServicesGUI::Results.show_transfer_results_tracking_id
|
174
174
|
|
data/lib/ds/version.rb
CHANGED