Then a text field should appear in the middle of the navigation bar
Given the user types some characters into the search field
When user user presses enter
Then the areas that contain an attraction, whose name contains the search string, should be outlined with a border
Technical Information
Use regular expressions to match the user's search string with the name of each attraction to find a match. The search string simply must be contained in the attraction name, not just start with.
As a user, in order to find attractions I'm interested in, I need to type some value in a text box in the navigation bar at the top of the page, press enter, and see results
Given a user visits the application
When the application renders
Then a text field should appear in the middle of the navigation bar
Given the user types some characters into the search field
When user user presses enter
Then the areas that contain an attraction, whose name contains the search string, should be outlined with a border
Technical Information