Skip to content

Commit 2859c83

Browse files
Update session id example
1 parent ff9f1fa commit 2859c83

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/docs.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,17 @@ end
240240

241241
at_exit do
242242
# selenium-webdriver (2.32.1) or better can use
243-
# $driver.session_id
244-
ID = $driver.send(:bridge).session_id
245-
driver_quit
243+
# $driver.driver.session_id
244+
ID = $driver.driver.send(:bridge).session_id
245+
246+
# end the test session. move on after 10 seconds.
247+
ignore { wait(10) { $driver.x } }
246248

247249
if !SAUCE_USERNAME.nil? && !SAUCE_ACCESS_KEY.nil?
248250
URL = "https://#{SAUCE_USERNAME}:#{SAUCE_ACCESS_KEY}@saucelabs.com/rest/v1/#{SAUCE_USERNAME}/jobs/#{ID}"
249251

250252
# Keep trying until passed is set correctly. Give up after 30 seconds.
251-
wait do
253+
wait_true do
252254
response = RestClient.put URL, { 'passed' => $passed }.to_json, :content_type => :json, :accept => :json
253255
response = JSON.parse(response)
254256

0 commit comments

Comments
 (0)