mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
16 lines
467 B
Gherkin
16 lines
467 B
Gherkin
|
@database-defaults
|
||
|
Feature: Create a page
|
||
|
As an author
|
||
|
I want to create a page in the CMS
|
||
|
So that I can grow my website
|
||
|
|
||
|
@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 "Add new" button in CMS Content Toolbar
|
||
|
When I press "Add new" button
|
||
|
And I check "Page"
|
||
|
And I press "Create" button
|
||
|
Then I should see an edit page form
|