Guest User

Untitled

a guest
Apr 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. Scenario: Searching pages
  2. Given I create a sub page "About us" for "/"
  3. And I create a sub page "Contact us" for "About us"
  4. When I go to "/pages/admin"
  5. Then I should see "Search pages"
  6. When I focus on the form which "action" is "/pages/search"
  7. And I select "title" from "scope"
  8. And I fill in "query" with "us"
  9. And I press "search"
  10. Then I should see "About us"
  11. And I should see "Contact us"
  12. When I focus on the form which "action" is "/pages/search"
  13. And I select "title" from "scope"
  14. And I fill in "query" with "Contact"
  15. And I press "search"
  16. Then I should see "Contact us"
  17. And I should not see "About us"
Add Comment
Please, Sign In to add comment