76 lines
3.1 KiB
Gherkin
76 lines
3.1 KiB
Gherkin
@shard_2
|
|
Feature: CMS.Create Subsection
|
|
In order offer a course on the edX platform
|
|
As a course author
|
|
I want to create and edit subsections
|
|
|
|
Scenario: Add a new subsection to a section
|
|
Given I have opened a new course section in Studio
|
|
When I click the New Subsection link
|
|
And I enter the subsection name and click save
|
|
Then I see my subsection on the Courseware page
|
|
|
|
Scenario: Add a new subsection (with a name containing a quote) to a section (bug #216)
|
|
Given I have opened a new course section in Studio
|
|
When I click the New Subsection link
|
|
And I enter a subsection name with a quote and click save
|
|
Then I see my subsection name with a quote on the Courseware page
|
|
And I click on the subsection
|
|
Then I see the complete subsection name with a quote in the editor
|
|
|
|
Scenario: Assign grading type to a subsection and verify it is still shown after refresh (bug #258)
|
|
Given I have opened a new course section in Studio
|
|
And I have added a new subsection
|
|
And I mark it as Homework
|
|
Then I see it marked as Homework
|
|
And I reload the page
|
|
Then I see it marked as Homework
|
|
|
|
# Safari has trouble saving the date in Sauce
|
|
@skip_safari
|
|
Scenario: Set a due date in a different year (bug #256)
|
|
Given I have opened a new subsection in Studio
|
|
And I set the subsection release date to 12/25/2011 03:00
|
|
And I set the subsection due date to 01/02/2012 04:00
|
|
Then I see the subsection release date is 12/25/2011 03:00
|
|
And I see the subsection due date is 01/02/2012 04:00
|
|
And I reload the page
|
|
Then I see the subsection release date is 12/25/2011 03:00
|
|
And I see the subsection due date is 01/02/2012 04:00
|
|
|
|
@skip_safari
|
|
Scenario: Set release and due dates of subsection on enter
|
|
Given I have opened a new subsection in Studio
|
|
And I set the subsection release date on enter to 04/04/2014 03:00
|
|
And I set the subsection due date on enter to 04/04/2014 04:00
|
|
Then I see the subsection release date is 04/04/2014 03:00
|
|
And I see the subsection due date is 04/04/2014 04:00
|
|
And I reload the page
|
|
Then I see the subsection release date is 04/04/2014 03:00
|
|
And I see the subsection due date is 04/04/2014 04:00
|
|
|
|
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 will confirm all alerts
|
|
And I press the "subsection" delete icon
|
|
And I confirm the prompt
|
|
Then the subsection does not exist
|
|
|
|
@skip_safari
|
|
Scenario: Sync to Section
|
|
Given I have opened a new course section in Studio
|
|
And I click the Edit link for the release date
|
|
And I set the section release date to 01/02/2103
|
|
And I have added a new subsection
|
|
And I click on the subsection
|
|
And I set the subsection release date to 06/20/2104
|
|
Then I see the subsection release date is 06/20/2104
|
|
And I reload the page
|
|
Then I see the subsection release date is 06/20/2104
|
|
And I click the link to sync release date to section
|
|
And I wait for "1" second
|
|
And I reload the page
|
|
Then I see the subsection release date is 01/02/2103
|