aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-07-04 13:20:30 -0700
committerGitHub <noreply@github.com>2019-07-04 13:20:30 -0700
commita59b2305792dd7012a8abc2e4b1a7d9037e8e208 (patch)
tree3937ed3d7a9f47c6519888d33279d4debaf4c2d5 /actionpack/test
parent6fd43bd07170d54e90625081bf21c36d3666b8c6 (diff)
parentb21ef266619074c27f0ea147f5ebaccfe1709ecf (diff)
downloadrails-a59b2305792dd7012a8abc2e4b1a7d9037e8e208.tar.gz
rails-a59b2305792dd7012a8abc2e4b1a7d9037e8e208.tar.bz2
rails-a59b2305792dd7012a8abc2e4b1a7d9037e8e208.zip
Merge pull request #36592 from jhawthorn/system_testing_preload
Preload browser driver_path to fix system testing under parallelism
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/system_testing/driver_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/system_testing/driver_test.rb b/actionpack/test/dispatch/system_testing/driver_test.rb
index 7ef306d04b..d3b16d0328 100644
--- a/actionpack/test/dispatch/system_testing/driver_test.rb
+++ b/actionpack/test/dispatch/system_testing/driver_test.rb
@@ -120,4 +120,17 @@ class DriverTest < ActiveSupport::TestCase
driver.use
end
end
+
+ test "preloads browser's driver_path" do
+ called = false
+
+ original_driver_path = ::Selenium::WebDriver::Chrome::Service.driver_path
+ ::Selenium::WebDriver::Chrome::Service.driver_path = -> { called = true }
+
+ ActionDispatch::SystemTesting::Driver.new(:selenium, screen_size: [1400, 1400], using: :chrome)
+
+ assert called
+ ensure
+ ::Selenium::WebDriver::Chrome::Service.driver_path = original_driver_path
+ end
end