ds-gui-automation 0.2.54 → 0.2.55
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_steps.rb +5 -1
- data/lib/ds/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: 014b15646dbd5ec18981392bfb258ccab143cb18
|
4
|
+
data.tar.gz: 0864c2a9bbb3d50c3160257e977f440f3f80e127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc908a290457f1d75386fd54f03d3330bb9f7f87f4e33352fc53f7e60ac78104e769896b6367a2c63ec616f943a5a3e04118dfc54aab3dedfb608d74e04023ee
|
7
|
+
data.tar.gz: 7d9c6158981e33e0e00334eb065998c5ed035a60fffe38fbf868921f44bf49df68389261bc01cf3d406ba3310aad06592929f9721065a8d42781473a0ae715e6
|
@@ -223,9 +223,13 @@ Given(/^I proceed to transfer checkout$/) do
|
|
223
223
|
|
224
224
|
sleep 10
|
225
225
|
|
226
|
+
@browser.refresh
|
227
|
+
|
228
|
+
sleep 10
|
229
|
+
|
226
230
|
clusters = @browser.as(:class, 'ux-button primary').to_a
|
227
231
|
|
228
|
-
raise "No results found for the specified destination ==> #{@browser.url}" unless !clusters.empty?
|
232
|
+
raise "No results found for the specified destination ==> #{@browser.url}, Results ==> #{clusters.size}" unless !clusters.empty?
|
229
233
|
|
230
234
|
clusters.to_a.shuffle.first.click
|
231
235
|
|
data/lib/ds/version.rb
CHANGED