我正在使用Selenium和java,我无法点击模态中的元素。 场景是这样的: 点击框架内的一个项目后,它会打开一个模态,我需要点击这个模态中的一个元素,但我无法得到它。
我已经尝试过:
js.executeScript("document.getElementById('saveexit').scrollIntoView(true);");
我也尝试过这样的switchTo():
while (itr.hasNext()) {
String popup = itr.next();
System.out.println("itr: " + popup);
driver.switchTo().window(popup);
}
这是我模态的html:
<div class="modal-dialog">
<div class="modal-content modal-custom-content">
<div class="modal-header">
...
</div>
<div class="modal-body">
<form id="formTo" class="form-container">
<div class="row">
...
</div>
<div class="small-space"></div>
<input ...>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
...
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
...
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
...
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
...
</div>
</div>
<div class="small-space"></div>
<div class="row">
...
</div>
</form>
</div>
<div class="small-space"></div>
<div class="modal-footer">
<div class="row text-center">
<div class="col-md-6 col-sm-6 col-xs-12">
<button class="btn modal-button full-btn" id="saveexit" type="button">SAVE AND EXIT</button>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
...
</div>
</div>
</div>
</div>
</div>
这是从firefox开发工具中获取的CSS路径:
html.no-touch body div.remodal-wrapper.remodal-is-opened div.modaliAdesione.remodal.remodal-is-initialized.remodal-is-opened div.modal-dialog div.modal-content.modal-custom-content div.modal-footer div.row.text-center div.col-md-6.col-sm-6.col-xs-12 button#saveexit.btn.modal-button.full-btn
永远找不到对象。
这里共享了html:https://codeshare.io/arLW9q
的代码段这是java代码:
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id=\"saveexit\"]")))
我也尝试过:
cssSelector: #saveexit
cssPath: html.no-touch body div.remodal-wrapper.remodal-is-opened div.modaliAdesione.remodal.remodal-is-initialized.remodal-is-opened
div.modal-dialog div.modal-content.modal-custom-content div.modal-footer div.row.text-center div.col-md-6.col-sm-6.col-xs-12
button#saveexit.btn.modal-button.full-btn
xpath: //*[@id="saveexit"]
请注意:如果我从浏览器的控制台运行document.getElementById('saveexit').click();
,则可以使用
答案 0 :(得分:1)
当您按照最佳做法使用 Selenium-Java
客户时,首要和最重要的试验必须是调用高效且经过验证的 click()
方法。根据 click()
方法产生的错误,我们可以处理其他替代解决方案。
正如我在您使用JavascriptExecutor
和switchTo().window()
的代码试用中看到的那样,您没有确定代表 WebElement
按钮的SAVE AND EXIT
好。
要点击 SAVE AND EXIT
按钮,您可以使用以下代码块:
new WebDriverWait(driver, 5).until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//div[@class='modal-dialog']//div[@class='modal-footer']//button[@class='btn modal-button full-btn' and @id='saveexit']"))).click();
答案 1 :(得分:0)
我在我的脚本中使用jquery修复了它;
这是行代码:
js.executeScript("$('#saveexit').trigger('click');");
我希望将来可以帮助别人。
我不知道为什么普通的javascript无法运行......