career.feature 460 B

12345678910111213
  1. Feature: Career
  2. In order to use the Career
  3. As an administrator
  4. I need to be able to create a career
  5. Scenario: Create a Career
  6. Given I am a platform administrator
  7. And I am on "/main/admin/careers.php?action=add"
  8. When I fill in the following:
  9. | name | Developer |
  10. And I fill in ckeditor field "description" with "Description"
  11. And I press "submit"
  12. Then I should see "Item added"