behave-framework/features/browser_demo.feature
Greg Gauthier 63fcdbc922
All checks were successful
Pylint / build (3.12) (push) Successful in 9s
fix code, update pylint, other goodies
2024-07-23 15:00:35 +01:00

24 lines
598 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
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