-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e37563
commit 8deb09a
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Feature: My firs test | ||
|
||
Scenario: I want to create my first test | ||
Given I go to the Cambridge University website | ||
When I click Give to Cambridge link | ||
And I can click the Alumni website link | ||
Then I close the browser | ||
|
||
Scenario Outline: As a not-so-novice, I want to go beyond touching Chrome | ||
Given I go to the Cambridge University website | ||
When I enter the search word "<words>" | ||
And I click the search icon | ||
And The URL has the word "<words>" in it | ||
And The tab title contains the "<words>" | ||
Then I close the browser | ||
|
||
Examples: | ||
| words | | ||
| Research | | ||
| Scholarship | | ||
| Museums and Collections | |