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
e84fa638
Commit
e84fa638
authored
Mar 04, 2013
by
Jay Zoldak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch WebDriverException
parent
21c15d8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
cms/djangoapps/contentstore/features/common.py
+12
-0
No files found.
cms/djangoapps/contentstore/features/common.py
View file @
e84fa638
...
@@ -97,10 +97,14 @@ def assert_css_with_text(css, text):
...
@@ -97,10 +97,14 @@ def assert_css_with_text(css, text):
def
css_click
(
css
):
def
css_click
(
css
):
'''
'''
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> Catch WebDriverException
First try to use the regular click method,
First try to use the regular click method,
but if clicking in the middle of an element
but if clicking in the middle of an element
doesn't work it might be that it thinks some other
doesn't work it might be that it thinks some other
element is on top of it there so click in the upper left
element is on top of it there so click in the upper left
<<<<<<< HEAD
'''
'''
try
:
try
:
assert_true
(
world
.
browser
.
is_element_present_by_css
(
css
,
5
))
assert_true
(
world
.
browser
.
is_element_present_by_css
(
css
,
5
))
...
@@ -113,6 +117,14 @@ def css_click(css):
...
@@ -113,6 +117,14 @@ def css_click(css):
'''
'''
css_click_at(css)
css_click_at(css)
>>>>>>> Click in the upper left of an element instead of the middle.
>>>>>>> Click in the upper left of an element instead of the middle.
=======
'''
try
:
assert_true
(
world
.
browser
.
is_element_present_by_css
(
css
,
5
))
world
.
browser
.
find_by_css
(
css
)
.
first
.
click
()
except
WebDriverException
,
e
:
css_click_at
(
css
)
>>>>>>>
Catch
WebDriverException
def
css_click_at
(
css
,
x
=
10
,
y
=
10
):
def
css_click_at
(
css
,
x
=
10
,
y
=
10
):
...
...
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