2017-08-25 81 views

回答

0

下載chromedriver: -

https://chromedriver.storage.googleapis.com/index.html?path=2.31/

的完整代碼就會像下面: -

System.setProperty("webdriver.chrome.driver","D:\\Workspace\\JmeterWebdriverProject\\src\\lib\\chromedriver.exe"); 
ChromeOptions chromeOptions = new ChromeOptions(); 
chromeOptions.addArguments("--start-maximized"); 
WebDriver driver = new ChromeDriver(chromeOptions); 
driver.get("https://www.google.co.in/"); 

編輯壁虎司機按你geckodriver的位置的路徑

+0

向我解釋如何做到這一點請 – IndigoTypeFour

+0

我已經更新了我的答案..你需要從上面的URL下載chromedriver ..現在你需要通過在第一行代碼chromedriver的位置... –

+0

作爲解釋.. 。chrome需要一個幫助chrome使用腳本來自動化的驅動程序..這些腳本向chromedriver發送指令,然後chromedriver指示chrome執行操作..這發生在它們之間的api調用之間 –

相關問題