Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bf01452c
Commit
bf01452c
authored
Jan 29, 2018
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define selectors and remove EE only code
parent
229785d5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
34 deletions
+42
-34
qa/qa/page/admin/settings.rb
qa/qa/page/admin/settings.rb
+7
-6
qa/qa/page/group/show.rb
qa/qa/page/group/show.rb
+33
-19
qa/qa/page/menu/admin.rb
qa/qa/page/menu/admin.rb
+2
-9
No files found.
qa/qa/page/admin/settings.rb
View file @
bf01452c
...
...
@@ -2,12 +2,13 @@ module QA
module
Page
module
Admin
class
Settings
<
Page
::
Base
##
# TODO, define all selectors required by this page object
#
# See gitlab-org/gitlab-qa#154
#
view
'app/views/admin/application_settings/show.html.haml'
view
'app/views/admin/application_settings/_form.html.haml'
do
element
:form_actions
,
'.form-actions'
element
:submit
,
"submit 'Save'"
element
:repository_storage
,
'%legend Repository Storage'
element
:hashed_storage
,
'Create new projects using hashed storage paths'
end
def
enable_hashed_storage
scroll_to
'legend'
,
text:
'Repository Storage'
...
...
qa/qa/page/group/show.rb
View file @
bf01452c
...
...
@@ -2,12 +2,25 @@ module QA
module
Page
module
Group
class
Show
<
Page
::
Base
##
# TODO, define all selectors required by this page object
#
# See gitlab-org/gitlab-qa#154
#
view
'app/views/groups/show.html.haml'
view
'app/views/groups/show.html.haml'
do
element
:dropdown_toggle
,
'.dropdown-toggle'
element
:new_project_subgroup
,
'.new-project-subgroup'
element
:new_project_toggle
,
/%li.+ data: { value: "new\-project"/
element
:new_project_button
,
/%input.+ data: { action: "new\-project"/
element
:new_subgroup_toggle
,
/%li.+ data: { value: "new\-subgroup"/
# TODO: input[data-action='new-subgroup'] seems to be handled by JS?
# See app/assets/javascripts/groups/new_group_child.js
end
view
'app/views/shared/groups/_search_form.html.haml'
do
element
:filter_by_name
,
"placeholder: s_('GroupsTree|Filter by name...')"
end
def
go_to_subgroup
(
name
)
click_link
name
...
...
@@ -24,31 +37,32 @@ module QA
end
def
go_to_new_subgroup
within
'.new-project-subgroup'
do
# 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
click_new
(
'subgroup'
)
find
(
"input[data-action='new-subgroup']"
).
click
end
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
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
wait
(
reload:
false
)
do
find
(
'.dropdown-toggle'
).
click
page
.
has_css?
(
"li[data-value='new-project']"
)
end
find
(
"li[data-value='new-project']"
).
click
page
.
has_css?
(
css
)
end
find
(
"input[data-action='new-project']"
).
click
find
(
css
).
click
end
end
end
end
...
...
qa/qa/page/menu/admin.rb
View file @
bf01452c
...
...
@@ -2,15 +2,8 @@ module QA
module
Page
module
Menu
class
Admin
<
Page
::
Base
##
# TODO, define all selectors required by this page object
#
# See gitlab-org/gitlab-qa#154
#
view
'app/views/admin/dashboard/index.html.haml'
def
go_to_license
click_link
'License'
view
'app/views/layouts/nav/sidebar/_admin.html.haml'
do
element
:settings
,
"_('Settings')"
end
def
go_to_settings
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment