Navigate to The first thing you will want to do after launching a browser is to open your website. This can be achieved in a single line: Java Python CSharp Ruby JavaScript Kotlin //Convenient driver.get("https://selenium.dev"); //Longer way driver.navigate().to("https://selenium.dev"); View Complete Code View on GitHub examples/java/src/test/java/dev/selenium/interactions/NavigationTest.java Copy Close package dev.selenium.interactions; import org.junit.jupiter.api.Test; import org.openqa.se...