Merge branch 'qa-speedup-new-subgroup-click' into 'master'

Speed-up the click on 'New subgroup' if the 'No results' text is shown

See merge request gitlab-org/gitlab-ce!16803
This commit is contained in:
Grzegorz Bizon 2018-01-30 17:51:05 +00:00
commit 69a3af733e
1 changed files with 9 additions and 1 deletions

View File

@ -13,6 +13,10 @@ module QA
element :new_subgroup_button, /%input.*\.js-new-group-child/
end
view 'app/assets/javascripts/groups/constants.js' do
element :no_result_text, 'Sorry, no groups or projects matched your search'
end
def go_to_subgroup(name)
click_link name
end
@ -24,7 +28,11 @@ module QA
def has_subgroup?(name)
filter_by_name(name)
page.has_link?(name)
wait(reload: false) do
return false if page.has_content?('Sorry, no groups or projects matched your search')
page.has_link?(name)
end
end
def go_to_new_subgroup