以下是我的代码。一个浏览器打开空白,另一个打开谷歌。 我正在使用最新版的chrome驱动程序。预先感谢。
public class Trials {
public static void main(String[] args) throws InterruptedException
{
System.setProperty("webdriver.chrome.driver","C:\\Selenium\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.google.com");
Thread.sleep(3000);
driver.close();
}
}