diff options
author | Ramya Authappan <rauthappan@gitlab.com> | 2019-03-07 04:37:21 +0000 |
---|---|---|
committer | Ramya Authappan <rauthappan@gitlab.com> | 2019-03-07 04:37:21 +0000 |
commit | b6e50a4e021fe55518e826721ba723b4732a7300 (patch) | |
tree | fbe7770ee95a9383b9b0584b5226e318ac33aa82 /qa | |
parent | 1a63de8134f31d7d4fb1d7f6779c60ae3d5c5502 (diff) | |
parent | de1d53fbd240b59a2423ac1c9dfcd0419a2a7ec1 (diff) | |
download | gitlab-ce-b6e50a4e021fe55518e826721ba723b4732a7300.tar.gz |
Merge branch 'qa-staging-42-fix-create-project-spec' into 'master'
Retry choose_test_namespace on exception
Closes gitlab-org/quality/staging#42
See merge request gitlab-org/gitlab-ce!25810
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/page/project/new.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/qa/qa/page/project/new.rb b/qa/qa/page/project/new.rb index 9f1867ef8a5..eabeae1acc4 100644 --- a/qa/qa/page/project/new.rb +++ b/qa/qa/page/project/new.rb @@ -24,9 +24,12 @@ module QA end def choose_test_namespace - click_element :project_namespace_select + retry_on_exception do + click_body + click_element :project_namespace_select - search_and_select(Runtime::Namespace.path) + search_and_select(Runtime::Namespace.path) + end end def go_to_import_project |