@shard_2 Feature: CMS.Course updates As a course author, I want to be able to provide updates to my students # Internet explorer can't select all so the update appears weirdly @skip_internetexplorer Scenario: Users can add updates Given I have opened a new course in Studio And I go to the course updates page When I add a new update with the text "Hello" Then I should see the update "Hello" And I see a "saving" notification # Internet explorer can't select all so the update appears weirdly @skip_internetexplorer Scenario: Users can edit updates Given I have opened a new course in Studio And I go to the course updates page When I add a new update with the text "Hello" And I modify the text to "Goodbye" Then I should see the update "Goodbye" And I see a "saving" notification Scenario: Users can delete updates Given I have opened a new course in Studio And I go to the course updates page And I add a new update with the text "Hello" And I delete the update And I confirm the prompt Then I should not see the update "Hello" And I see a "deleting" notification Scenario: Users can edit update dates Given I have opened a new course in Studio And I go to the course updates page And I add a new update with the text "Hello" When I edit the date to "June 1, 2013" Then I should see the date "June 1, 2013" And I see a "saving" notification # Internet explorer can't select all so the update appears weirdly @skip_internetexplorer Scenario: Users can change handouts Given I have opened a new course in Studio And I go to the course updates page When I modify the handout to "
    Test
" Then I see the handout "Test" And I see a "saving" notification Scenario: Text outside of tags is preserved Given I have opened a new course in Studio And I go to the course updates page When I add a new update with the text "before middle after" Then I should see the update "before middle after" And when I reload the page Then I should see the update "before middle after" Scenario: Static links are rewritten when previewing a course update Given I have opened a new course in Studio And I go to the course updates page When I add a new update with the text "" # Can only do partial text matches because of the quotes with in quotes (and regexp step matching). Then I should see the update "/c4x/MITx/999/asset/my_img.jpg" And I change the update from "/static/my_img.jpg" to "" Then I should see the update "/c4x/MITx/999/asset/modified.jpg" And when I reload the page Then I should see the update "/c4x/MITx/999/asset/modified.jpg" Scenario: Static links are rewritten when previewing handouts Given I have opened a new course in Studio And I go to the course updates page When I modify the handout to "
" # Can only do partial text matches because of the quotes with in quotes (and regexp step matching). Then I see the handout "/c4x/MITx/999/asset/my_img.jpg" And I change the handout from "/static/my_img.jpg" to "" Then I see the handout "/c4x/MITx/999/asset/modified.jpg" And when I reload the page Then I see the handout "/c4x/MITx/999/asset/modified.jpg" Scenario: Users cannot save handouts with bad html until edit or update it properly Given I have opened a new course in Studio And I go to the course updates page When I modify the handout to "

[LINK TEXT]

" Then I see the handout error text And I see handout save button disabled When I edit the handout to "

home

" Then I see handout save button re-enabled When I save handout edit # Can only do partial text matches because of the quotes with in quotes (and regexp step matching). Then I see the handout "https://www.google.com.pk/" And when I reload the page Then I see the handout "https://www.google.com.pk/"