使用 to() 方法打开浏览器窗口
使用 to()
方法打开浏览器。
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
class navigateWithTo{
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.navigate().to("http://www.example.com");
driver.close();
}
}