無法點擊使用Selenium鏈接 - webdriver的:當我檢查按鈕無法點擊Continue按鈕 - 硒的webdriver
的Win7以下是代碼:
一個ID =「continue_button鉻「disabled =」false「class =」button button-large ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only「href =」#「role =」button「aria-disabled =「false」>
span class =「ui-button-text」> span class =「button-content」>繼續
我曾嘗試以下方法並沒有什麼作品:
driver.findElement(By.xpath("//*[@id='continue_button']")).click();
driver.findElement(By.xpath("//a[contains(..,'Continue')]")).click();
JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("document.querySelector(\"a[id$='continue_button']\").click()");
等待按鈕嘗試首先在調試,然後嘗試單擊driver.verify()。verifyElementPresent(通過) –