adminSettings.feature 701 B

123456789101112131415161718192021
  1. Feature: Settings update
  2. In order to use Chamilo
  3. As an administrator
  4. I need to be able to update Chamilo settings
  5. Scenario: Update 'profile' setting
  6. Given I am a platform administrator
  7. And I am on "/main/admin/settings.php?category=User"
  8. And I check "Name"
  9. And I check "e-mail"
  10. And I check "Code"
  11. And I check "Login"
  12. And I press "Save settings"
  13. Then I should see "Update successful"
  14. Scenario: Update 'allow_registration' setting
  15. Given I am a platform administrator
  16. And I am on "/main/admin/settings.php"
  17. And I check the "allow_registration" radio button with "true" value
  18. And I press "Save settings"
  19. Then I should see "Update successful"