Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
61e64fbf
Commit
61e64fbf
authored
8 years ago
by
Brian Jacobel
Browse files
Options
Downloads
Plain Diff
Merge pull request #12615 from edx/bjacobel/focus-test-to-bokchoy
Move the flaky focus unit test removed in #12433 to a bok choy test
parents
1d0e93a0
57b4cb7f
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/test/acceptance/tests/studio/test_studio_split_test.py
+30
-0
30 additions, 0 deletions
...on/test/acceptance/tests/studio/test_studio_split_test.py
with
30 additions
and
0 deletions
common/test/acceptance/tests/studio/test_studio_split_test.py
+
30
−
0
View file @
61e64fbf
...
...
@@ -482,6 +482,36 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin):
groups
=
[
"
First Group
"
,
"
Group C
"
,
"
Group D
"
]
)
def
test_focus_management_in_experiment_group_inputs
(
self
):
"""
Scenario: Ensure that selecting the focus inputs in the groups list
sets the .is-focused class on the fieldset
Given I have a course with experiment group configurations
When I click the name of the first group
Then the fieldset wrapping the group names whould get class .is-focused
When I click away from the first group
Then the fieldset should not have class .is-focused anymore
"""
self
.
page
.
visit
()
self
.
page
.
create_experiment_group_configuration
()
config
=
self
.
page
.
experiment_group_configurations
[
0
]
group_a
=
config
.
groups
[
0
]
# Assert the fieldset doesn't have .is-focused class
self
.
assertFalse
(
self
.
page
.
q
(
css
=
"
fieldset.groups-fields.is-focused
"
).
visible
)
# Click on the Group A input field
self
.
page
.
q
(
css
=
group_a
.
prefix
).
click
()
# Assert the fieldset has .is-focused class applied
self
.
assertTrue
(
self
.
page
.
q
(
css
=
"
fieldset.groups-fields.is-focused
"
).
visible
)
# Click away
self
.
page
.
q
(
css
=
"
.page-header
"
).
click
()
# Assert the fieldset doesn't have .is-focused class
self
.
assertFalse
(
self
.
page
.
q
(
css
=
"
fieldset.groups-fields.is-focused
"
).
visible
)
def
test_use_group_configuration
(
self
):
"""
Scenario: Ensure that the group configuration can be used by split_module correctly
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment