Commit 6f15678f authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'qa-define-selectors' into 'master'

Define QA selectors and remove EE only code

Closes gitlab-qa#154

See merge request gitlab-org/gitlab-ce!16767
parents 9d53c15c 07557a94
...@@ -2,12 +2,13 @@ module QA ...@@ -2,12 +2,13 @@ module QA
module Page module Page
module Admin module Admin
class Settings < Page::Base class Settings < Page::Base
## view 'app/views/admin/application_settings/_form.html.haml' do
# TODO, define all selectors required by this page object element :form_actions, '.form-actions'
# element :submit, "submit 'Save'"
# See gitlab-org/gitlab-qa#154 element :repository_storage, '%legend Repository Storage'
# element :hashed_storage,
view 'app/views/admin/application_settings/show.html.haml' 'Create new projects using hashed storage paths'
end
def enable_hashed_storage def enable_hashed_storage
scroll_to 'legend', text: 'Repository Storage' scroll_to 'legend', text: 'Repository Storage'
......
...@@ -28,31 +28,32 @@ module QA ...@@ -28,31 +28,32 @@ module QA
end end
def go_to_new_subgroup def go_to_new_subgroup
within '.new-project-subgroup' do click_new('subgroup')
# May need to click again because it is possible to click the button quicker than the JS is bound
wait(reload: false) do
find('.dropdown-toggle').click
page.has_css?("li[data-value='new-subgroup']")
end
find("li[data-value='new-subgroup']").click
end
find("input[data-action='new-subgroup']").click find("input[data-action='new-subgroup']").click
end end
def go_to_new_project def go_to_new_project
click_new('project')
find("input[data-action='new-project']").click
end
private
def click_new(kind)
within '.new-project-subgroup' do within '.new-project-subgroup' do
css = "li[data-value='new-#{kind}']"
# May need to click again because it is possible to click the button quicker than the JS is bound # May need to click again because it is possible to click the button quicker than the JS is bound
wait(reload: false) do wait(reload: false) do
find('.dropdown-toggle').click find('.dropdown-toggle').click
page.has_css?("li[data-value='new-project']") page.has_css?(css)
end end
find("li[data-value='new-project']").click
end
find("input[data-action='new-project']").click find(css).click
end
end end
end end
end end
......
...@@ -2,15 +2,8 @@ module QA ...@@ -2,15 +2,8 @@ module QA
module Page module Page
module Menu module Menu
class Admin < Page::Base class Admin < Page::Base
## view 'app/views/layouts/nav/sidebar/_admin.html.haml' do
# TODO, define all selectors required by this page object element :settings, "_('Settings')"
#
# See gitlab-org/gitlab-qa#154
#
view 'app/views/admin/dashboard/index.html.haml'
def go_to_license
click_link 'License'
end end
def go_to_settings def go_to_settings
......
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