behave-framework/features/browser_demo.feature
Greg Gauthier 5a617830e9
All checks were successful
EdgeTests / build (3.12) (push) Successful in 1m13s
Pylint / build (3.12) (push) Successful in 13s
customize for ONLY edge for now
2024-07-23 19:38:29 +01:00

25 lines
611 B
Gherkin

Feature: Browser Demo
Scenario: Load test.io web page with chrome
Given I have a chrome driver
When I navigate to test.io
Then The page is displayed
Scenario: Load test.io web page with firefox
Given I have a firefox driver
When I navigate to test.io
Then The page is displayed
@mark.edge
Scenario: Load test.io web page with edge
Given I have an edge driver
When I navigate to test.io
Then The page is displayed
@skip
Scenario: Load test.io web page with safari
Given I have a safari driver
When I navigate to test.io
Then The page is displayed