Feature: Apply rich formatting to content As a cms author I want to work with content in the way I'm used to from word processing software So that I make it more appealing by creating structure and highlights Background: Given a "page" "About Us" has the "Content" "

My awesome headline

Some amazing content

" Given the "group" "EDITOR" has permissions "Access to 'Pages' section" And I am logged in as a member of "EDITOR" group And I go to "/admin/pages" Then I click on "About Us" in the tree Scenario: I can control alignment of selected content Given I select "My awesome headline" in the "Content" HTML field When I press the "Align right" HTML field button Then "My awesome headline" in the "Content" HTML field should be right aligned But "Some amazing content" in the "Content" HTML field should be left aligned Then I press the "Save" button Then "My awesome headline" in the "Content" HTML field should be right aligned Scenario: I can bold selected content Given I select "awesome" in the "Content" HTML field When I press the "Bold" HTML field button Then "awesome" in the "Content" HTML field should be bold But "My" in the "Content" HTML field should not be bold When I press the "Save" button Then "awesome" in the "Content" HTML field should be bold But "My" in the "Content" HTML field should not be bold