Commit fca48225 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'qa/mk-fix-intermittent-clone-failure' into 'master'

[CE backport] Fix intermittent clone failure in QA

See merge request gitlab-org/gitlab-ce!16739
parents 85e6ffb5 25cd25fc
...@@ -3,11 +3,9 @@ module QA ...@@ -3,11 +3,9 @@ module QA
module Project module Project
class Show < Page::Base class Show < Page::Base
view 'app/views/shared/_clone_panel.html.haml' do view 'app/views/shared/_clone_panel.html.haml' do
element :clone_holder, '.git-clone-holder'
element :clone_dropdown element :clone_dropdown
element :clone_options_dropdown, '.clone-options-dropdown' element :clone_options_dropdown, '.clone-options-dropdown'
end
view 'app/views/shared/_clone_panel.html.haml' do
element :project_repository_location, 'text_field_tag :project_clone' element :project_repository_location, 'text_field_tag :project_clone'
end end
...@@ -20,11 +18,16 @@ module QA ...@@ -20,11 +18,16 @@ module QA
end end
def choose_repository_clone_http def choose_repository_clone_http
wait(reload: false) do
click_element :clone_dropdown click_element :clone_dropdown
page.within('.clone-options-dropdown') do page.within('.clone-options-dropdown') do
click_link('HTTP') click_link('HTTP')
end end
# Ensure git clone textbox was updated to http URI
page.has_css?('.git-clone-holder input#project_clone[value*="http"]')
end
end end
def repository_location def repository_location
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment