diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2019-06-06 15:13:33 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 15:13:33 +0900 |
commit | 76d260797eb4195ad5dac916e46467f097ec375f (patch) | |
tree | fe54a9241bc2ce3f7dc9f35aabe0f7144892f41d /actionpack/test | |
parent | c4d8e057c540dd0ba424dcc5203db1c945b4b412 (diff) | |
parent | fef8d97a2c75511df62915b617743b47f1a2f43a (diff) | |
download | rails-76d260797eb4195ad5dac916e46467f097ec375f.tar.gz rails-76d260797eb4195ad5dac916e46467f097ec375f.tar.bz2 rails-76d260797eb4195ad5dac916e46467f097ec375f.zip |
Merge pull request #36424 from y-yagi/unlock_selenium-webdriver
Unlock `selenium-webdriver` gem version
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/system_testing/driver_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/system_testing/driver_test.rb b/actionpack/test/dispatch/system_testing/driver_test.rb index 0d08f17af3..7ef306d04b 100644 --- a/actionpack/test/dispatch/system_testing/driver_test.rb +++ b/actionpack/test/dispatch/system_testing/driver_test.rb @@ -66,7 +66,7 @@ class DriverTest < ActiveSupport::TestCase end driver.use - expected = { args: ["start-maximized"], mobileEmulation: { deviceName: "iphone 6" }, prefs: { detach: true } } + expected = { "goog:chromeOptions" => { args: ["start-maximized"], mobileEmulation: { deviceName: "iphone 6" }, prefs: { detach: true } } } assert_equal expected, driver_option.as_json end @@ -81,7 +81,7 @@ class DriverTest < ActiveSupport::TestCase end driver.use - expected = { args: ["start-maximized"], mobileEmulation: { deviceName: "iphone 6" }, prefs: { detach: true } } + expected = { "goog:chromeOptions" => { args: ["start-maximized"], mobileEmulation: { deviceName: "iphone 6" }, prefs: { detach: true } } } assert_equal expected, driver_option.as_json end |