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
5b7e59e0
Commit
5b7e59e0
authored
6 years ago
by
Calen Pennington
Browse files
Options
Downloads
Patches
Plain Diff
Return an unresolved promise when loading javascript resource urls in ConditionalModule
parent
522028b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/lib/xmodule/xmodule/js/src/conditional/display.js
+6
-1
6 additions, 1 deletion
common/lib/xmodule/xmodule/js/src/conditional/display.js
common/test/acceptance/pages/lms/conditional.py
+23
-2
23 additions, 2 deletions
common/test/acceptance/pages/lms/conditional.py
with
29 additions
and
3 deletions
common/lib/xmodule/xmodule/js/src/conditional/display.js
+
6
−
1
View file @
5b7e59e0
...
...
@@ -139,6 +139,7 @@
kind
=
resource
.
kind
,
placement
=
resource
.
placement
,
data
=
resource
.
data
;
var
loaded
;
if
(
mimetype
===
'
text/css
'
)
{
if
(
kind
===
'
text
'
)
{
// xss-lint: disable=javascript-jquery-append,javascript-concat-html
...
...
@@ -152,7 +153,11 @@
// xss-lint: disable=javascript-jquery-append,javascript-concat-html
$head
.
append
(
'
<script>
'
+
data
+
'
</script>
'
);
}
else
if
(
kind
===
'
url
'
)
{
$script
(
data
,
data
);
loaded
=
$
.
Deferred
();
$script
(
data
,
data
,
function
()
{
loaded
.
resolve
()
});
return
loaded
.
promise
();
}
}
else
if
(
mimetype
===
'
text/html
'
)
{
if
(
placement
===
'
head
'
)
{
...
...
This diff is collapsed.
Click to expand it.
common/test/acceptance/pages/lms/conditional.py
+
23
−
2
View file @
5b7e59e0
...
...
@@ -2,6 +2,7 @@
Conditional Pages
"""
from
bok_choy.page_object
import
PageObject
from
bok_choy.promise
import
EmptyPromise
,
BrokenPromise
POLL_ANSWER
=
'
Yes, of course
'
...
...
@@ -17,14 +18,34 @@ class ConditionalPage(PageObject):
"""
Returns True if the browser is currently on the right page.
"""
return
self
.
q
(
css
=
'
.conditional-wrapper
'
).
visible
# This is all a hack to work around the fact that there's no way to adjust the
# timeout parameters for self.q
def
check_fn
():
return
self
.
q
(
css
=
'
.conditional-wrapper
'
).
visible
try
:
EmptyPromise
(
check_fn
,
"
On conditional page
"
,
).
fulfill
()
return
True
except
BrokenPromise
:
return
False
def
is_content_visible
(
self
):
"""
Returns True if the conditional
'
s content has been revealed,
False otherwise
"""
return
self
.
q
(
css
=
'
.hidden-contents
'
).
visible
def
check_fn
():
return
self
.
q
(
css
=
'
.hidden-contents
'
).
visible
try
:
EmptyPromise
(
check_fn
,
"
Conditional is visible
"
,
).
fulfill
()
return
True
except
BrokenPromise
:
return
False
def
fill_in_poll
(
self
):
"""
...
...
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