作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请不要对我发布类似问题的原因发表评论。我已经尝试了很多东西,但没有任何效果。下面是 HTML
<div id="businessSettingsColumn1">
<div class="sectionLink">
<a href="serviceprovider/30015514/settings/details">Business details</a>
</div>
<div class="sectionLink">
<a href="serviceprovider/30015514/settings/hours">Operating hours</a>
</div>
<div class="sectionLink">
<a href="settingsserviceproviderleave.action?purpose=closed">Closed dates</a>
</div>
<div class="sectionLink">
<a href="serviceprovider/30015514/settings/booking/notifications">Appointment notifications</a>
</div>
webdriver.findElement(By.partialLinkText("Operating hours")).click();
webDriver.get(mylement.findElement(By.tagName("a")).getAttribute("href"));
List<WebElement> businessLinks= busCol.findElements(By.className("sectionLink"));
for(WebElement bLink :businessLinks) {
if(bLink.getText().contains("Operating hours")) {
bLink.findElement(By.tagName("a")).click();
}
}
webdriver.findElement(By.partialLinkText("Operating hours")).click();
webdriver.findElement(By.partialLinkText("Operating hours")).click();
webdriver.findElement(By.partialLinkText("Operating hours")).click();
最佳答案
在单击元素之前,您可以尝试在该元素上调用 focus() 吗?
关于 Selenium 网络驱动程序 : Unable to click a link (Not inside iframe- able to print gettext value from the webelement),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19993229/
我是一名优秀的程序员,十分优秀!