|
| 1 | +@block @block_alerts |
| 2 | +Feature: Show alerts |
| 3 | + In order to alert users |
| 4 | + As a user |
| 5 | + I need to be able to see that the alerts block shows the intended alerts. |
| 6 | + |
| 7 | + Background: |
| 8 | + Given the following "blocks" exist: |
| 9 | + | blockname | contextlevel | reference | pagetypepattern | defaultregion | |
| 10 | + | alerts | System | 1 | site-index | side-pre | |
| 11 | + And the following config values are set as admin: |
| 12 | + | config | value | plugin | |
| 13 | + | title1 | Alert Title One | block_alerts | |
| 14 | + | description1 | Alert Description One | block_alerts | |
| 15 | + | link1 | https://nasa.gov | block_alerts | |
| 16 | + | linktext1 | Alert Link One | block_alerts | |
| 17 | + | title2 | Alert Title Two | block_alerts | |
| 18 | + | description2 | Alert Description Two | block_alerts | |
| 19 | + | link2 | https://www.london.gov.uk/ | block_alerts | |
| 20 | + | linktext2 | Alert Link Two | block_alerts | |
| 21 | + | title3 | Alert Title Three | block_alerts | |
| 22 | + | description3 | Alert Description Three | block_alerts | |
| 23 | + | link3 | https://www.parliament.uk/ | block_alerts | |
| 24 | + | linktext3 | Alert Link Three | block_alerts | |
| 25 | + |
| 26 | + Scenario: See news as intended and check the links lead to the intended websites. |
| 27 | + When I am on site homepage |
| 28 | + Then I should see "Alert Title One" |
| 29 | + And I should see "Alert Description One" |
| 30 | + And "Alert Link One" "link" should exist in the ".carousel-item" "css_element" |
| 31 | + When I click on "Alert Link One" "link" |
| 32 | + Then I should see "NASA" |
| 33 | + |
| 34 | + And I am on site homepage |
| 35 | + And I click on "[data-slide='next']" "css_element" |
| 36 | + And I should see "Alert Title Two" |
| 37 | + And I should see "Alert Description Two" |
| 38 | + And I should see "Alert Link Two" |
| 39 | + When I click on "Alert Link Two" "link" |
| 40 | + Then I should see "London" |
| 41 | + |
| 42 | + And I am on site homepage |
| 43 | + And I click on "[data-slide='next']" "css_element" |
| 44 | + And I should see "Alert Title Three" |
| 45 | + And I should see "Alert Description Three" |
| 46 | + And I should see "Alert Link Three" |
| 47 | + When I click on "Alert Link Three" "link" |
| 48 | + Then I should see "Parliament" |
| 49 | + |
| 50 | + And I am on site homepage |
| 51 | + And I click on "[data-slide='next']" "css_element" |
| 52 | + And I should see "Alert Title One" |
| 53 | + And I should see "Alert Description One" |
0 commit comments