Security update for permissions_by_term
[yaffs-website] / vendor / behat / mink-extension / features / search.feature
1 Feature: Search
2   In order to see a word definition
3   As a website user
4   I need to be able to search for a word
5
6   Scenario: Searching for a page that does exist
7     Given I am on "/wiki/Main_Page"
8     When I fill in "search" with "Behavior Driven Development"
9     And I press "searchButton"
10     Then I should see "agile software development"
11
12   Scenario: Searching for a page that does NOT exist
13     Given I am on "/wiki/Main_Page"
14     When I fill in "search" with "Glory Driven Development"
15     And I press "searchButton"
16     Then I should see "Search results"