You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.7 KiB
41 lines
1.7 KiB
@block @block_html @core_block
|
|
Feature: Adding and configuring HTML blocks
|
|
In order to have custom blocks on a page
|
|
As admin
|
|
I need to be able to create, configure and change HTML blocks
|
|
|
|
@javascript
|
|
Scenario: Configuring the HTML block with Javascript on
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
When I turn editing mode on
|
|
And I add the "HTML" block
|
|
And I configure the "(new HTML block)" block
|
|
And I set the field "Content" to "Static text without a header"
|
|
Then I should see "HTML block title"
|
|
And I press "Save changes"
|
|
Then I should not see "(new HTML block)"
|
|
And I configure the "block_html" block
|
|
And I set the field "HTML block title" to "The HTML block header"
|
|
And I set the field "Content" to "Static text with a header"
|
|
And I press "Save changes"
|
|
And "block_html" "block" should exist
|
|
And "The HTML block header" "block" should exist
|
|
And I should see "Static text with a header" in the "The HTML block header" "block"
|
|
|
|
Scenario: Configuring the HTML block with Javascript off
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
When I turn editing mode on
|
|
And I add the "HTML" block
|
|
And I configure the "(new HTML block)" block
|
|
And I set the field "Content" to "Static text without a header"
|
|
And I press "Save changes"
|
|
Then I should not see "(new HTML block)"
|
|
And I configure the "block_html" block
|
|
And I set the field "HTML block title" to "The HTML block header"
|
|
And I set the field "Content" to "Static text with a header"
|
|
And I press "Save changes"
|
|
And "block_html" "block" should exist
|
|
And "The HTML block header" "block" should exist
|
|
And I should see "Static text with a header" in the "The HTML block header" "block"
|
|
|