Fix for driver time out.

This commit is contained in:
Jack Walker
2020-04-23 12:18:02 +10:00
parent 07037587e8
commit 4fae78b4d5
4 changed files with 12 additions and 5 deletions

View File

@@ -114,7 +114,9 @@ RSpec.describe 'AutoRunEngine test', :run_on_browserstack => true do
end
after(:all) do
# @driver.quit
puts @driver
puts @driver.class
@driver.quit
# Code to stop browserstack local after end of test
# @bs_local.stop if @enable_local

View File

@@ -110,7 +110,9 @@ RSpec.describe 'Browser details handler', :run_on_browserstack => true do
end
after(:all) do
# @driver.quit
puts @driver
puts @driver.class
@driver.quit
# Code to stop browserstack local after end of test
# @bs_local.stop if @enable_local

View File

@@ -85,7 +85,9 @@ RSpec.describe 'BeEF WebSockets enabled', :run_on_browserstack => true do
end
after(:all) do
# @driver.quit
puts @driver
puts @driver.class
@driver.quit
# Code to stop browserstack local after end of test
# @bs_local.stop if @enable_local

View File

@@ -118,8 +118,9 @@ RSpec.describe 'BeEF Debug Command Modules:', :run_on_browserstack => true do
end
after(:all) do
# puts @driver.methods.sort
# @driver.quit
puts @driver
puts @driver.class
@driver.quit
# Code to stop browserstack local after end of test
# @bs_local.stop if @enable_local