我正在使用selenium通过chrome浏览器自动执行网页,但chrome浏览器未启动,并且显示“ data :;”。在地址栏中不加载任何页面。

Selenium:selenium-server-standalone-3.0.0-beta2,也尝试使用2.53

Chrome驱动程序:2.23(http://chromedriver.storage.googleapis.com/index.html?path=2.23/

日蚀:开普勒

Chrome浏览器:版本53.0.2785.89 m(64位)

以下是我正在使用的代码

        System.setProperty("webdriver.chrome.driver","C:\\Vinod\\Java\\Others\\chromedriver.exe");
    WebDriver driver = new ChromeDriver();
    driver.get("http://www.google.com");
    driver.findElement(By.id("lst-ib")).sendKeys("Testing");


以下是输出:

enter image description here

感谢您的帮助-谢谢。

最佳答案

据我所知,你一切都很好。您只需要耐心一点。

您获得的data:页面是我们最初对硒的期望。您的google页面将在此之后启动。

09-11 05:52