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
b66d0cf5
Commit
b66d0cf5
authored
Mar 05, 2013
by
Jay Zoldak
Committed by
Jay Zoldak
Mar 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix signup test on ubuntu
parent
ad5d2a96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
cms/djangoapps/contentstore/features/signup.py
+6
-4
No files found.
cms/djangoapps/contentstore/features/signup.py
View file @
b66d0cf5
from
lettuce
import
world
,
step
from
common
import
*
@step
(
'I fill in the registration form$'
)
...
...
@@ -13,10 +14,11 @@ def i_fill_in_the_registration_form(step):
@step
(
'I press the Create My Account button on the registration form$'
)
def
i_press_the_button_on_the_registration_form
(
step
):
register_form
=
world
.
browser
.
find_by_css
(
'form#register_form'
)
submit_css
=
'button#submit'
register_form
.
find_by_css
(
submit_css
)
.
click
()
submit_css
=
'form#register_form button#submit'
# Workaround for click not working on ubuntu
# for some unknown reason.
e
=
css_find
(
submit_css
)
e
.
type
(
' '
)
@step
(
'I should see be on the studio home page$'
)
def
i_should_see_be_on_the_studio_home_page
(
step
):
...
...
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