How can I navigate to a particular URL with Java-JUnit?
Hello Alex,
Add driver.get
command. Then add the website URL to get to a particular site. Please refer to the sample below:
@Test
public void testSimple() throws Exception {
try {
//Change it to production page
driver.get("https://lambdatest.github.io/sample-todo-app/");