@assets Feature: Insert links into a page As a cms author I want to insert a link into my content So that I can link to a external website or a page on my site Background: Given a "page" "Home" And a "page" "About Us" has the "Content" "My awesome content" And a "file" "assets/file1.jpg" And I am logged in with "ADMIN" permissions And I go to "/admin/pages" And I click on "About Us" in the tree Scenario: I can link to an internal page Given I select "awesome" in the "Content" HTML field And I press the "Insert Link" button When I check "Page on the site" And I fill in the "Page" dropdown with "Home" And I fill in "my desc" for "Link description" And I press the "Insert" button # TODO Dynamic DB identifiers Then the "Content" HTML field should contain "awesome" # Required to avoid "unsaved changes" browser dialog Then I press the "Save draft" button Scenario: I can link to an external URL Given I select "awesome" in the "Content" HTML field And I press the "Insert Link" button When I check "Another website" And I fill in "http://silverstripe.org" for "URL" And I check "Open link in a new window" And I press the "Insert" button Then the "Content" HTML field should contain "awesome" # Required to avoid "unsaved changes" browser dialog Then I press the "Save draft" button Scenario: I can link to a file Given I select "awesome" in the "Content" HTML field When I press the "Insert Link" button When I check "Download a file" And I fill in the "File" dropdown with "file1.jpg" And I press the "Insert link" button Then the "Content" HTML field should contain "awesome" # Required to avoid "unsaved changes" browser dialog Then I press the "Save draft" button Scenario: I can link to an anchor Given I fill in the "Content" HTML field with "

My awesome content

" And I select "awesome" in the "Content" HTML field When I press the "Insert Link" button When I check "Anchor on this page" # Need to hard-code the id attribute of the id attribute, if you say 'Then the URL field', it picks up URLSegment instead. Then the "Form_EditorToolbarLinkForm_external" field should contain "http://silverstripe.org" # This doesn't seem to suffer from that issue When I fill in "http://google.com" for "URL" And I press the "Insert link" button Then the "Content" HTML field should contain "awesome" # Required to avoid "unsaved changes" browser dialog Then I press the "Save draft" button Scenario: I can remove a link Given I fill in the "Content" HTML field with "My awesome content" And I select "awesome" in the "Content" HTML field When I press the "Unlink" button Then the "Content" HTML field should contain "My awesome content" And the "Content" HTML field should not contain "http://silverstripe.org" # Required to avoid "unsaved changes" browser dialog Then I press the "Save draft" button