-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathgoogle.feature
30 lines (25 loc) · 1.11 KB
/
google.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Feature: The big search feature
I want to find TestCafe repository by Google search
Scenario: Searching for TestCafe on Google
Given I opened Google's search page
And I dismissed the privacy statement when it appeared
When I type my search request "github TestCafe" on Google
And I press the "enter" key
Then I should see that the first Google's result is "DevExpress/testcafe:"
Scenario Outline: Searching for <keyword> on Google
Given I opened Google's search page
And I dismissed the privacy statement when it appeared
When I type my search request "<keyword>" on Google
And I press the "enter" key
Then I should see that the first Google's result is "<result-text>"
Examples:
| keyword | result-text |
| facebook | Facebook |
| twitter | X. |
@googleHook
Scenario: Searching for hook keyword on Google
Given I opened Google's search page
And I dismissed the privacy statement when it appeared
When I type my search request on Google
And I press the "enter" key
Then I should see that the first Google's result is as expected