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
0548b119
Commit
0548b119
authored
Jun 05, 2013
by
JonahStanley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed other scenarios that were skipped
parent
acc743ee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
10 deletions
+6
-10
cms/djangoapps/contentstore/features/section.feature
+2
-4
cms/djangoapps/contentstore/features/section.py
+2
-2
cms/djangoapps/contentstore/features/subsection.feature
+2
-4
No files found.
cms/djangoapps/contentstore/features/section.feature
View file @
0548b119
...
...
@@ -26,11 +26,9 @@ Feature: Create Section
And
I save a new section release date
Then
the section release date is updated
# Skipped because Ubuntu ChromeDriver hangs on alert
@skip
Scenario
:
Delete section
Given
I have opened a new course in Studio
And
I have added a new section
When
I
press the
"section"
delete icon
And
I
confirm the alert
When
I
confirm all alerts
And
I
press the
"section"
delete icon
Then
the section does not exist
cms/djangoapps/contentstore/features/section.py
View file @
0548b119
...
...
@@ -69,8 +69,8 @@ def i_see_complete_section_name_with_quote_in_editor(step):
@step
(
'the section does not exist$'
)
def
section_does_not_exist
(
step
):
css
=
'
span.section-name-span
'
assert
world
.
browser
.
is_element_not_present_by_css
(
css
)
css
=
'
h3[data-name="My Section"]
'
assert
world
.
is_css_not_present
(
css
)
@step
(
'I see a release date for my section$'
)
...
...
cms/djangoapps/contentstore/features/subsection.feature
View file @
0548b119
...
...
@@ -32,12 +32,10 @@ Feature: Create Subsection
And
I reload the page
Then
I see the correct dates
# Skipped because Ubuntu ChromeDriver hangs on alert
@skip
Scenario
:
Delete a subsection
Given
I have opened a new course section in Studio
And
I have added a new subsection
And
I see my subsection on the Courseware page
When
I
press the
"subsection"
delete icon
And
I
confirm the alert
When
I
confirm all alerts
And
I
press the
"subsection"
delete icon
Then
the subsection does not exist
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