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
0d2dc431
Commit
0d2dc431
authored
9 years ago
by
Eric Fischer
Browse files
Options
Downloads
Plain Diff
Merge pull request #10066 from edx/efischer/edit_studio_test
TNL-3305 HTML Editing Bok Choy Test
parents
624bc9a7
2bbea43d
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/test/acceptance/pages/studio/html_component_editor.py
+50
-13
50 additions, 13 deletions
common/test/acceptance/pages/studio/html_component_editor.py
common/test/acceptance/tests/studio/test_studio_container.py
+18
-0
18 additions, 0 deletions
common/test/acceptance/tests/studio/test_studio_container.py
with
68 additions
and
13 deletions
common/test/acceptance/pages/studio/html_component_editor.py
+
50
−
13
View file @
0d2dc431
...
...
@@ -7,25 +7,62 @@ class HtmlComponentEditorView(ComponentEditorView):
"""
Represents the rendered view of an HTML component editor.
"""
def
set_content_and_save
(
self
,
content
):
"""
Types content into the html component and presses Save.
editor_mode_css
=
'
.edit-xblock-modal .editor-modes .editor-button
'
def
set_content_and_save
(
self
,
content
,
raw
=
False
):
"""
Types content into the html component and presses Save.
Arguments:
content (str): The content to be used.
raw (bool): If true, edits in
'
raw HTML
'
mode.
"""
self
.
set_content
(
content
)
if
raw
:
self
.
set_raw_content
(
content
)
else
:
self
.
set_content
(
content
)
self
.
save
()
def
set_content_and_cancel
(
self
,
content
):
"""
Types content into the html component and presses Cancel to abort the change.
def
set_content_and_cancel
(
self
,
content
,
raw
=
False
):
"""
Types content into the html component and presses Cancel to abort.
Arguments:
content (str): The content to be used.
raw (bool): If true, edits in
'
raw HTML
'
mode.
"""
self
.
set_content
(
content
)
if
raw
:
self
.
set_raw_content
(
content
)
else
:
self
.
set_content
(
content
)
self
.
cancel
()
def
set_content
(
self
,
content
):
"""
Types content into the html component, leaving the component open.
Arguments:
content (str): The content to be used.
"""
Types content into the html component, leaving the component open.
"""
sel
f
.
q
(
css
=
'
.edit-xblock-modal .editor-modes .editor-button
'
).
click
()
editor
=
self
.
q
(
css
=
self
.
_bounded_selector
(
'
.html-editor .mce-edit-area
'
))[
0
]
self
.
q
(
css
=
self
.
editor_mode_css
).
click
()
sel
ector
=
'
.html-editor .mce-edit-area
'
editor
=
self
.
q
(
css
=
self
.
_bounded_selector
(
selector
))[
0
]
ActionChains
(
self
.
browser
).
click
(
editor
).
\
send_keys
([
Keys
.
CONTROL
,
'
a
'
]).
key_up
(
Keys
.
CONTROL
).
send_keys
(
content
).
perform
()
send_keys
([
Keys
.
CONTROL
,
'
a
'
]).
key_up
(
Keys
.
CONTROL
).
\
send_keys
(
content
).
perform
()
def
set_raw_content
(
self
,
content
):
"""
Types content in raw html mode, leaving the component open.
Arguments:
content (str): The content to be used.
"""
self
.
q
(
css
=
self
.
editor_mode_css
).
click
()
self
.
q
(
css
=
'
[aria-label=
"
Edit HTML
"
]
'
).
click
()
#Focus goes to the editor by default
ActionChains
(
self
.
browser
).
send_keys
([
Keys
.
CONTROL
,
'
a
'
]).
\
key_up
(
Keys
.
CONTROL
).
send_keys
(
content
).
perform
()
self
.
q
(
css
=
'
.mce-foot .mce-primary
'
).
click
()
This diff is collapsed.
Click to expand it.
common/test/acceptance/tests/studio/test_studio_container.py
+
18
−
0
View file @
0d2dc431
...
...
@@ -293,6 +293,24 @@ class EditContainerTest(NestedVerticalTest):
container
=
self
.
go_to_nested_container_page
()
self
.
modify_display_name_and_verify
(
container
)
def
test_edit_raw_html
(
self
):
"""
Test the raw html editing functionality.
"""
modified_content
=
"
<p>modified content</p>
"
#navigate to and open the component for editing
unit
=
self
.
go_to_unit_page
()
container
=
unit
.
xblocks
[
1
].
go_to_container
()
component
=
container
.
xblocks
[
1
].
children
[
0
]
component
.
edit
()
html_editor
=
HtmlComponentEditorView
(
self
.
browser
,
component
.
locator
)
html_editor
.
set_content_and_save
(
modified_content
,
raw
=
True
)
#note we're expecting the <p> tags to have been removed
self
.
assertEqual
(
component
.
student_content
,
"
modified content
"
)
class
EditVisibilityModalTest
(
ContainerBase
):
"""
...
...
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