Selenium:actions.moveToElement.click 不起作用
·
问题:Selenium:actions.moveToElement.click 不起作用
我不明白为什么这不起作用。我正在测试的 Web 应用程序有一个在单击按钮时生成的弹出框。这个弹出框包含一个表格,其中每一行都是可点击的。我已经尝试了许多操作、表行选择等的实现,但没有任何效果。该元素对 Selenium 可见,只是不会单击它。也没有抛出错误。
附加说明:我已经用其他元素检查了 Action 方法并且它可以工作,所以它必须是正在使用的选择器或者它是如何看待它的。非常奇怪的行为。我还使用 Selenium IDE 在 Firefox 中检查了它,并且 weblement.click() 将在 CSS 选择器上工作。
public class ContactDetails {
WebDriver driverInstance;
public ContactDetails(WebDriver driver){
this.driverInstance = driver;
}
public void enterContactDetails(){
//Other code here...
By validAddress = By.cssSelector("#customerAddress > tbody > tr:nth-child(1) > td");
//Validate that the element is visible. Definitely working as intended because I use it elsewhere in the code successfully.
if (Helper.checkElementVisible(driverInstance, validAddress)){
//if visible:
WebElement selectAddress = driverInstance.findElement(validAddress);
//Helper.scrollToElementAndClick(driverInstance, selectAddress);
Actions actions = new Actions(driverInstance);
actions.moveToElement(selectAddress).click().perform();
}
}
}
助手类:
public class Helper {
public static void scrollToElementAndClick(WebDriver driver, WebElement webelement){
Actions actions = new Actions(driver);
actions.moveToElement(webelement).click().perform();
}
最奇怪的是,当我执行此实现时,它运行了几次。然后我将 Actions 代码放入现在已注释掉的Helper.scrollToElementAndClick()方法中,它停止工作。然后当我回到这个实现时,它也不起作用!
我无法发布弹出窗口的图像,因为它会泄露敏感信息,但这里有一些带有虚拟数据的弹出窗口示例 HTML:
<div class="someDiv" tabindex="-1" role="dialog" aria-labelledby="ui-1"
style="height: auto; width: 600px; top: 175px; left: 364px; display: block;">
<div class="anotherDiv">
<span id="ui-1" class="ui-title"></span>
<button class="ui-title-close" role="button" aria-disabled="false" title="close">
<span>close</span>
</button>
</div>
<div id="validateCustomerAddress" class="ui-content" style="width: auto; min-height: 0px; max height: none; height: 230px;">
<h2 class="aSection" style="color:#666666">Valid Addresses:</h2>
<table id="customerAddress">
<tbody>
<tr>
<td>ZIP CODE: N/A</td>
</tr>
<tr>
<td>2 POPLAR WAY</td>
</tr>
<tr>
<td>KINSEY DRIVE</td>
</tr>
</tbody>
</table>
</div>
</div>
解答
尝试将所有操作组合成一个操作,如下所示,然后重试。
公共类助手{
public static void scrollToElementAndClick(WebDriver driver, WebElement webelement){
Actions actions = new Actions(driver);
actions.moveToElement(webelement).click();
action = action.build;
action.perform();
}
你也可以试试JavascriptExecuter,如下图:
((JavascriptExecutor)driver).executeScript("arguments[0].click();", selectAddress);
还要考虑td包含可以单击的其他一些元素(输入、链接)的可能性(我不知道您的 html 代码)。
希望这对您有所帮助。
更多推荐

所有评论(0)