maybe this will fix it?

This commit is contained in:
John Bintz 2012-11-27 17:04:25 -05:00
parent 24d7eccfe1
commit 098b122842
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ module PersistentSelenium
end end
def set_app_host(host) def set_app_host(host)
@app_host = host @app_host = host.dup
browser.navigate.to("data:text/html;base64,#{Base64.encode64(starting_page)}") browser.navigate.to("data:text/html;base64,#{Base64.encode64(starting_page)}")
end end

View File

@ -4,7 +4,7 @@ Capybara.register_driver :persistent_selenium do |app|
require 'drb' require 'drb'
DRb.start_service DRb.start_service
browser = DRbObject.new nil, PersistentSelenium.url browser = DRbObject.new nil, PersistentSelenium.url
server = Capybara::Server.new(app) server = Capybara::Server.new(app)
server.boot server.boot