答案 0 :(得分:0)
您尝试查找的元素位于模态对话框中,因此您必须引导 WebDriverWait 才能使元素可点击,您可以使用以下任一方法选项:
cssSelector :
new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.cssSelector("div.modal-footer button.btn.btn-default#save"))).click();
xpath :
new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//div[@class='modal-footer']//button[@class='btn btn-default' and @id='save']"))).click();