diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2019-04-16 00:19:10 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2019-05-07 01:06:15 +0800 |
commit | 65a7a20ae9b70cdb25835b64466106c796825876 (patch) | |
tree | 6ca8e2062ed2eba5452406a41a35bcbcedc17c72 /spec | |
parent | 3990e52d0a0789233444831d7d293229803d736b (diff) | |
download | gitlab-ce-65a7a20ae9b70cdb25835b64466106c796825876.tar.gz |
Try to reduce testing view port and unify it
Hoping that we don't hit into
Selenium::WebDriver::Error::NoSuchDriverError:
invalid session id
Again.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/support/capybara.rb | 11 | ||||
-rw-r--r-- | spec/support/helpers/mobile_helpers.rb | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb index 18a7a392c12..875a9a76e12 100644 --- a/spec/support/capybara.rb +++ b/spec/support/capybara.rb @@ -17,6 +17,8 @@ JS_CONSOLE_FILTER = Regexp.union([ "Download the Vue Devtools extension" ]) +CAPYBARA_WINDOW_SIZE = [1366, 768].freeze + Capybara.register_driver :chrome do |app| capabilities = Selenium::WebDriver::Remote::Capabilities.chrome( # This enables access to logs with `page.driver.manage.get_log(:browser)` @@ -29,7 +31,7 @@ Capybara.register_driver :chrome do |app| ) options = Selenium::WebDriver::Chrome::Options.new - options.add_argument("window-size=1240,1400") + options.add_argument("window-size=#{CAPYBARA_WINDOW_SIZE.join(',')}") # Chrome won't work properly in a Docker container in sandbox mode options.add_argument("no-sandbox") @@ -78,8 +80,11 @@ RSpec.configure do |config| protocol: 'http') # reset window size between tests - unless session.current_window.size == [1240, 1400] - session.current_window.resize_to(1240, 1400) rescue nil + unless session.current_window.size == CAPYBARA_WINDOW_SIZE + begin + session.current_window.resize_to(*CAPYBARA_WINDOW_SIZE) + rescue # ? + end end end diff --git a/spec/support/helpers/mobile_helpers.rb b/spec/support/helpers/mobile_helpers.rb index 9dc1f1de436..4230d315d9b 100644 --- a/spec/support/helpers/mobile_helpers.rb +++ b/spec/support/helpers/mobile_helpers.rb @@ -8,7 +8,7 @@ module MobileHelpers end def restore_window_size - resize_window(1366, 768) + resize_window(*CAPYBARA_WINDOW_SIZE) end def resize_window(width, height) |