aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-03-17 11:39:13 -0400
committerGitHub <noreply@github.com>2017-03-17 11:39:13 -0400
commit7413be0d31ec7eacc6f93e26546cb02ac6db73ca (patch)
treea824d9b88b89cf303fdb33e23768c4404f645416
parent3666962dd031b2d0e028f4fc6b52e0f19d573798 (diff)
parentec99107a2982236c726699cbbefc8839de278b93 (diff)
downloadrails-7413be0d31ec7eacc6f93e26546cb02ac6db73ca.tar.gz
rails-7413be0d31ec7eacc6f93e26546cb02ac6db73ca.tar.bz2
rails-7413be0d31ec7eacc6f93e26546cb02ac6db73ca.zip
Merge pull request #28341 from mtsmfm/pass-options-to-driven-by
Pass options to `driven_by`
-rw-r--r--actionpack/lib/action_dispatch/system_test_case.rb4
-rw-r--r--actionpack/lib/action_dispatch/system_testing/driver.rb3
-rw-r--r--actionpack/test/dispatch/system_testing/driver_test.rb3
3 files changed, 6 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/system_test_case.rb b/actionpack/lib/action_dispatch/system_test_case.rb
index 903dac7a71..f908607e50 100644
--- a/actionpack/lib/action_dispatch/system_test_case.rb
+++ b/actionpack/lib/action_dispatch/system_test_case.rb
@@ -112,8 +112,8 @@ module ActionDispatch
# driven_by :selenium, using: :firefox
#
# driven_by :selenium, screen_size: [800, 800]
- def self.driven_by(driver, using: :chrome, screen_size: [1400, 1400])
- @driver = SystemTesting::Driver.new(driver, using: using, screen_size: screen_size)
+ def self.driven_by(driver, using: :chrome, screen_size: [1400, 1400], options: {})
+ @driver = SystemTesting::Driver.new(driver, using: using, screen_size: screen_size, options: options)
end
# Returns the driver object for the initialized system test
diff --git a/actionpack/lib/action_dispatch/system_testing/driver.rb b/actionpack/lib/action_dispatch/system_testing/driver.rb
index 72d132d64f..5cf17883f7 100644
--- a/actionpack/lib/action_dispatch/system_testing/driver.rb
+++ b/actionpack/lib/action_dispatch/system_testing/driver.rb
@@ -5,6 +5,7 @@ module ActionDispatch
@name = name
@browser = options[:using]
@screen_size = options[:screen_size]
+ @options = options[:options]
end
def use
@@ -19,7 +20,7 @@ module ActionDispatch
def register
Capybara.register_driver @name do |app|
- Capybara::Selenium::Driver.new(app, browser: @browser).tap do |driver|
+ Capybara::Selenium::Driver.new(app, { browser: @browser }.merge(@options)).tap do |driver|
driver.browser.manage.window.size = Selenium::WebDriver::Dimension.new(*@screen_size)
end
end
diff --git a/actionpack/test/dispatch/system_testing/driver_test.rb b/actionpack/test/dispatch/system_testing/driver_test.rb
index 8f8777b19f..814e1d707b 100644
--- a/actionpack/test/dispatch/system_testing/driver_test.rb
+++ b/actionpack/test/dispatch/system_testing/driver_test.rb
@@ -8,10 +8,11 @@ class DriverTest < ActiveSupport::TestCase
end
test "initializing the driver with a browser" do
- driver = ActionDispatch::SystemTesting::Driver.new(:selenium, using: :chrome, screen_size: [1400, 1400])
+ driver = ActionDispatch::SystemTesting::Driver.new(:selenium, using: :chrome, screen_size: [1400, 1400], options: { url: "http://example.com/wd/hub" })
assert_equal :selenium, driver.instance_variable_get(:@name)
assert_equal :chrome, driver.instance_variable_get(:@browser)
assert_equal [1400, 1400], driver.instance_variable_get(:@screen_size)
+ assert_equal ({ url: "http://example.com/wd/hub" }), driver.instance_variable_get(:@options)
end
test "selenium? returns false if driver is poltergeist" do