summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2017-10-04 06:39:32 +0000
committerJarka Kadlecova <jarka@gitlab.com>2017-11-01 14:07:34 +0100
commit5128367050e82b1741b6097667fc2976167171f9 (patch)
tree3a6bf9bc71e1e9179cd8ecc33b71e163ec03f522
parentc6aaee2dd28f9cfb53084798be5bbcfaaa374eff (diff)
downloadgitlab-ce-5128367050e82b1741b6097667fc2976167171f9.tar.gz
Merge branch 'sh-fix-gitlab-qa-ee-license-add' into 'master'
Fix GitLab QA: increase window size to ensure License link shows See merge request gitlab-org/gitlab-ce!14674
-rw-r--r--qa/qa/page/admin/menu.rb2
-rw-r--r--qa/qa/specs/config.rb3
2 files changed, 1 insertions, 4 deletions
diff --git a/qa/qa/page/admin/menu.rb b/qa/qa/page/admin/menu.rb
index f4619042e34..baa06b1c75e 100644
--- a/qa/qa/page/admin/menu.rb
+++ b/qa/qa/page/admin/menu.rb
@@ -4,8 +4,6 @@ module QA
class Menu < Page::Base
def go_to_license
link = find_link 'License'
- # Click space to scroll this link into the view
- link.send_keys(:space)
link.click
end
end
diff --git a/qa/qa/specs/config.rb b/qa/qa/specs/config.rb
index 4dfdd6cd93c..79c681168cc 100644
--- a/qa/qa/specs/config.rb
+++ b/qa/qa/specs/config.rb
@@ -43,8 +43,7 @@ module QA
Capybara.register_driver :chrome do |app|
capabilities = Selenium::WebDriver::Remote::Capabilities.chrome(
'chromeOptions' => {
- 'binary' => '/usr/bin/google-chrome-stable',
- 'args' => %w[headless no-sandbox disable-gpu window-size=1280,1024]
+ 'args' => %w[headless no-sandbox disable-gpu window-size=1280,1680]
}
)