Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
26c01dff
Commit
26c01dff
authored
Oct 24, 2014
by
Jesse Zoldak
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5721 from edx/zoldak/fix-easy-access-test
Fix test page definition for course group configurations page
parents
93425a7c
af3d911a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
common/test/acceptance/pages/studio/settings_group_configurations.py
+15
-2
No files found.
common/test/acceptance/pages/studio/settings_group_configurations.py
View file @
26c01dff
"""
"""
Course Group Configurations page.
Course Group Configurations page.
"""
"""
from
bok_choy.promise
import
EmptyPromise
from
.course_page
import
CoursePage
from
.course_page
import
CoursePage
from
.utils
import
confirm_prompt
from
.utils
import
confirm_prompt
...
@@ -14,7 +14,20 @@ class GroupConfigurationsPage(CoursePage):
...
@@ -14,7 +14,20 @@ class GroupConfigurationsPage(CoursePage):
url_path
=
"group_configurations"
url_path
=
"group_configurations"
def
is_browser_on_page
(
self
):
def
is_browser_on_page
(
self
):
return
self
.
q
(
css
=
'body.view-group-configurations'
)
.
present
"""
Verify that the browser is on the page and it is not still loading.
"""
EmptyPromise
(
lambda
:
self
.
q
(
css
=
'body.view-group-configurations'
)
.
present
,
'On the group configuration page'
)
.
fulfill
()
EmptyPromise
(
lambda
:
not
self
.
q
(
css
=
'span.spin'
)
.
visible
,
'Group Configurations are finished loading'
)
.
fulfill
()
return
True
@property
@property
def
group_configurations
(
self
):
def
group_configurations
(
self
):
...
...
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