使用 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();
}
}