diff --git a/lib/persistent_selenium/cucumber.rb b/lib/persistent_selenium/cucumber.rb new file mode 100644 index 0000000..51e305c --- /dev/null +++ b/lib/persistent_selenium/cucumber.rb @@ -0,0 +1,8 @@ +require_relative './driver' + +Before do + if Capybara.current_driver == :persistent_selenium + Capybara.server_port ||= '3001' + Capybara.app_host ||= "http://localhost:#{Capybara.server_port}" + end +end diff --git a/lib/persistent_selenium/driver.rb b/lib/persistent_selenium/driver.rb index e8f4160..93d8993 100644 --- a/lib/persistent_selenium/driver.rb +++ b/lib/persistent_selenium/driver.rb @@ -4,13 +4,6 @@ require 'capybara/selenium/driver' # make sure these classes exist on this end [ Selenium::WebDriver::Error::StaleElementReferenceError, Selenium::WebDriver::Error::UnhandledError, Selenium::WebDriver::Error::ElementNotVisibleError ] -Before do - if Capybara.current_driver == :persistent_selenium - Capybara.server_port ||= '3001' - Capybara.app_host ||= "http://localhost:#{Capybara.server_port}" - end -end - Capybara.register_driver :persistent_selenium do |app| require 'drb' diff --git a/lib/persistent_selenium/rspec.rb b/lib/persistent_selenium/rspec.rb new file mode 100644 index 0000000..62fe515 --- /dev/null +++ b/lib/persistent_selenium/rspec.rb @@ -0,0 +1,10 @@ +require_relative './driver' + +RSpec.configure do |c| + c.before :each do + if Capybara.current_driver == :persistent_selenium + Capybara.server_port ||= '3001' + Capybara.app_host ||= "http://localhost:#{Capybara.server_port}" + end + end +end