When I go to "specific page"

The step definition indicates that the user is navigating to a specific page of the website being tested.

 

When (I|we)* go to "([^"]*)?/"

 

The implementation details may vary depending on the testing framework being tested. For web applications, it might involve clicking a link or button, entering a specific URL, or using a predefined navigation command.

 

Example to use:

When I go to "contact"
When we go to "user/login"