From 8deb09a8d829b4ad602cd62e695b3d68ecdd19b9 Mon Sep 17 00:00:00 2001 From: Julia Torrejon Date: Sun, 24 Feb 2019 20:47:05 +0000 Subject: [PATCH] Create First_Test.feature --- First_Test.feature | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 First_Test.feature diff --git a/First_Test.feature b/First_Test.feature new file mode 100644 index 0000000..0f17cbd --- /dev/null +++ b/First_Test.feature @@ -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 "" + And I click the search icon + And The URL has the word "" in it + And The tab title contains the "" + Then I close the browser + + Examples: + | words | + | Research | + | Scholarship | + | Museums and Collections |