Created
January 9, 2024 15:40
A Beginner's Guide To SpecFlow ScenarioContext
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
Feature: ECommerce | |
As a user, I want to navigate between the product categories | |
So I can find the desired product in the list | |
Background: | |
Given I navigate to the LambdaTest ecommerce playground page | |
Scenario Outline: Navigate to categories | |
Given I extend the Shop by Category menu | |
When I select the <category> category | |
Then the correct page is loaded | |
Examples: | |
| category | | |
| Components | | |
| Cameras | | |
| Software | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment