2012-11-09 19:15:54 +01:00
|
|
|
Feature: Create a page
|
2013-06-07 10:21:05 +02:00
|
|
|
As an author
|
|
|
|
I want to create a page in the CMS
|
|
|
|
So that I can grow my website
|
2012-11-09 19:15:54 +01:00
|
|
|
|
2013-06-07 10:21:05 +02:00
|
|
|
@javascript
|
|
|
|
Scenario: I can create a page from the pages section
|
|
|
|
Given I am logged in with "ADMIN" permissions
|
|
|
|
And I go to "/admin/pages"
|
|
|
|
And I should see a "Add new" button in CMS Content Toolbar
|
|
|
|
When I press the "Add new" button
|
2014-05-05 02:46:57 +02:00
|
|
|
And I select the "Page" radio button
|
2013-06-07 10:21:05 +02:00
|
|
|
And I press the "Create" button
|
|
|
|
Then I should see an edit page form
|