2 Feature: Get a feed of security announcements
3 In order to see the security announcements feeds
5 I should be able to see the rss feeds icons and view rss feeds
8 Scenario: Visit the Drupal core announcements feed and view the contents
9 Given I am on "/security"
10 Then I should see "Subscribe with RSS"
11 When I click on the feed icon
12 Then I should be on "/security/rss.xml"
13 And I should see the text "Security advisories" in the feed
14 And I should see the text "Description" in the feed
15 And I should see the text "Versions affected" in the feed
16 And I should see at least "5" feed items
19 Scenario: Visit the Contributed projects feed and view the contents
20 Given I am on "security/contrib"
21 Then I should see "Subscribe with RSS"
22 When I click on the feed icon
23 Then I should be on "/security/contrib/rss.xml"
24 And I should see the text "Security advisories for contributed projects" in the feed
25 And I should see the text "Description" in the feed
26 And I should see the text "Versions affected" in the feed
27 And I should see at least "5" feed items
30 Scenario: Visit the public service announcements feed and view the contents
31 Given I am on "security/psa"
32 Then I should see "Subscribe with RSS"
33 When I click on the feed icon
34 Then I should be on "/security/psa/rss.xml"
35 And I should see the text "Security public service announcements" in the feed
36 And I should see the text "Description" in the feed
37 And I should see the text "Versions affected" in the feed
38 And I should see at least "5" feed items