systemAnnouncements.feature 836 B

12345678910111213141516171819202122
  1. Feature: System Announcements
  2. In order to use the System Announcements tool
  3. The admin should create system Announcements
  4. Background:
  5. Given I am a platform administrator
  6. And I am on course "TEMP" homepage
  7. Scenario: Create a system announcement
  8. Given I am on "/main/admin/system_announcements.php?action=add"
  9. And wait for the page to be loaded
  10. When I fill in the following:
  11. | title | Announcement system test |
  12. And I fill in ckeditor field "content" with "Announcement system description"
  13. And I press "Add news"
  14. Then I should see "Announcement has been added"
  15. Scenario: Delete system announcement
  16. Given I am on "/main/admin/system_announcements.php"
  17. When I follow "Delete"
  18. And I confirm the popup
  19. Then I should see "Announcement has been deleted"