summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorddavison <ddavison@gitlab.com>2019-03-19 09:24:45 -0700
committerddavison <ddavison@gitlab.com>2019-05-20 12:35:51 -0700
commit3f4a1082ae5788d4135bf01a748036ff03656d32 (patch)
tree184ec600b5dac32efb02f0145a6655a7d9c57319
parent7d5b68d837545909204e6caf2352f34ac2f1ba7a (diff)
downloadgitlab-ce-3f4a1082ae5788d4135bf01a748036ff03656d32.tar.gz
Up wait time to 60 seconds as before for LoginPage
-rw-r--r--qa/qa/page/validatable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/page/validatable.rb b/qa/qa/page/validatable.rb
index 7cc7f1a128e..8467d261285 100644
--- a/qa/qa/page/validatable.rb
+++ b/qa/qa/page/validatable.rb
@@ -12,7 +12,7 @@ module QA
next unless element.required?
# TODO: this wait needs to be replaced by the wait class
- unless base_page.has_element?(element.name, wait: 10)
+ unless base_page.has_element?(element.name, wait: 60)
raise Validatable::PageValidationError, "#{element.name} did not appear on #{self.name} as expected"
end
end