From 3619ce044a348308d7189377bcdb0ab7998432a2 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Thu, 16 Mar 2017 14:18:00 +0100 Subject: Resolve GitLab QA cold boot problems on entry page --- qa/qa/page/main/entry.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'qa') diff --git a/qa/qa/page/main/entry.rb b/qa/qa/page/main/entry.rb index fe80deb6429..c5432f83593 100644 --- a/qa/qa/page/main/entry.rb +++ b/qa/qa/page/main/entry.rb @@ -1,3 +1,5 @@ +require 'timeout' + module QA module Page module Main @@ -5,8 +7,15 @@ module QA def initialize visit('/') - # This resolves cold boot problems with login page - find('.application', wait: 120) + # This resolves cold boot / post-deployment migrations running + # problems. + # + Timeout.timeout(240) do + loop do + break if page.has_css?('.application', wait: 10) + refresh + end + end end def sign_in_using_credentials -- cgit v1.2.3