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
b2b46332
Commit
b2b46332
authored
10 years ago
by
zubair-arbi
Browse files
Options
Downloads
Patches
Plain Diff
wait for notification on adding video component
TNL-392
parent
23531e89
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/test/acceptance/pages/studio/video/video.py
+5
-2
5 additions, 2 deletions
common/test/acceptance/pages/studio/video/video.py
common/test/acceptance/tests/video/test_studio_video_module.py
+1
-2
1 addition, 2 deletions
...n/test/acceptance/tests/video/test_studio_video_module.py
with
6 additions
and
4 deletions
common/test/acceptance/pages/studio/video/video.py
+
5
−
2
View file @
b2b46332
...
...
@@ -9,6 +9,7 @@ from bok_choy.javascript import wait_for_js, js_defined
from
....tests.helpers
import
YouTubeStubConfig
from
...lms.video.video
import
VideoPage
from
selenium.webdriver.common.keys
import
Keys
from
..utils
import
wait_for_notification
CLASS_SELECTORS
=
{
...
...
@@ -132,7 +133,7 @@ class VideoComponentPage(VideoPage):
"""
return
self
.
q
(
css
=
CLASS_SELECTORS
[
'
video_controls
'
]).
visible
def
click_button
(
self
,
button_name
,
index
=
0
):
def
click_button
(
self
,
button_name
,
index
=
0
,
require_notification
=
False
):
"""
Click on a button as specified by `button_name`
...
...
@@ -142,6 +143,8 @@ class VideoComponentPage(VideoPage):
"""
self
.
q
(
css
=
BUTTON_SELECTORS
[
button_name
]).
nth
(
index
).
click
()
if
require_notification
:
wait_for_notification
(
self
)
self
.
wait_for_ajax
()
@staticmethod
...
...
@@ -237,7 +240,7 @@ class VideoComponentPage(VideoPage):
Create a Video Component by clicking on Video button and wait for rendering completion.
"""
# Create video
self
.
click_button
(
'
create_video
'
)
self
.
click_button
(
'
create_video
'
,
require_notification
=
True
)
self
.
wait_for_video_component_render
()
def
xblocks
(
self
):
...
...
This diff is collapsed.
Click to expand it.
common/test/acceptance/tests/video/test_studio_video_module.py
+
1
−
2
View file @
b2b46332
...
...
@@ -4,7 +4,7 @@
Acceptance tests for CMS Video Module.
"""
from
nose.plugins.attrib
import
attr
from
unittest
import
skipIf
,
skip
from
unittest
import
skipIf
from
...pages.studio.auto_auth
import
AutoAuthPage
from
...pages.studio.overview
import
CourseOutlinePage
from
...pages.studio.video.video
import
VideoComponentPage
...
...
@@ -227,7 +227,6 @@ class CMSVideoTest(CMSVideoBaseTest):
self
.
assertFalse
(
self
.
video
.
is_captions_visible
())
@skip
(
'
TNL-392
'
)
def
test_video_controls_shown_correctly
(
self
):
"""
Scenario: Video controls for all videos show 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