mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Adding behat test for changing theme of site using CMS dropdown
This commit is contained in:
parent
e444b359ec
commit
c6b16061bb
@ -1,19 +1,18 @@
|
|||||||
Feature: Edit site wide title and tagline
|
Feature: Edit site wide settings
|
||||||
As a site administrator
|
As a site administrator
|
||||||
I want to configure the sites title and tagline
|
I want to configure the sites title, tagline and theme
|
||||||
So that I dont have to change any templates
|
So that I dont have to change any templates
|
||||||
|
|
||||||
Background:
|
Background:
|
||||||
Given a "page" "home"
|
Given I am logged in with "ADMIN" permissions
|
||||||
|
And a "page" "home"
|
||||||
|
And I go to "/admin/settings"
|
||||||
|
|
||||||
@javascript
|
@javascript
|
||||||
Scenario: I can edit my Site title and Tagline
|
Scenario: I can edit my Site title and Tagline
|
||||||
Given I am logged in with "ADMIN" permissions
|
Given I should see an edit page form
|
||||||
And I go to "/admin/settings"
|
|
||||||
Then I should see an edit page form
|
|
||||||
And I should see "Site title"
|
And I should see "Site title"
|
||||||
And I should see "Tagline"
|
And I should see "Tagline"
|
||||||
And I should see "Theme"
|
|
||||||
|
|
||||||
When I fill in "Site title" with "Test Site"
|
When I fill in "Site title" with "Test Site"
|
||||||
And I fill in "Tagline" with "Site is under construction"
|
And I fill in "Tagline" with "Site is under construction"
|
||||||
@ -24,3 +23,14 @@ Feature: Edit site wide title and tagline
|
|||||||
When I go to "/home"
|
When I go to "/home"
|
||||||
Then I should see "Test Site"
|
Then I should see "Test Site"
|
||||||
And I should see "Site is under construction"
|
And I should see "Site is under construction"
|
||||||
|
|
||||||
|
Scenario: I can change the theme of the website
|
||||||
|
Given I should see an edit page form
|
||||||
|
And I should see "Theme"
|
||||||
|
|
||||||
|
When I select "tutorial" from "Theme"
|
||||||
|
And I press the "Save" button
|
||||||
|
And I reload the page
|
||||||
|
|
||||||
|
When I go to "/home"
|
||||||
|
Then I should see "Visit www.silverstripe.com to download the CMS"
|
Loading…
Reference in New Issue
Block a user