The step definition indicates that the user is navigating to a specific page of the website being tested.
When (I go |I navigate |we go |we navigate |navigating )?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 I go to "/user/login"When I navigate to "/admin/dashboard"When navigating to "/products"When we go to "/products"When we navigate to "/terms"