Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorWalmyr Lima <walmyr@gitlab.com>2019-08-30 17:47:58 +0300
committerWalmyr Lima <walmyr@gitlab.com>2019-08-30 17:48:00 +0300
commit6c0d1534c1e0aab79342e9109647eb820e6d35c5 (patch)
tree5f840691386e0e85b9843468ad547c3958443fa6 /qa
parent9bff69b6264382f7a9cbcbb351284c7e77810209 (diff)
Increase window size during e2e tests
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/runtime/browser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/runtime/browser.rb b/qa/qa/runtime/browser.rb
index 2987bb1a213..197008ed8bf 100644
--- a/qa/qa/runtime/browser.rb
+++ b/qa/qa/runtime/browser.rb
@@ -68,7 +68,7 @@ module QA
options = Selenium::WebDriver.const_get(QA::Runtime::Env.browser.capitalize)::Options.new
if QA::Runtime::Env.browser == :chrome
- options.add_argument("window-size=1240,1680")
+ options.add_argument("window-size=1480,2200")
# Chrome won't work properly in a Docker container in sandbox mode
options.add_argument("no-sandbox")