小编典典

selenium webdriver查找锚标记并单击

selenium

<div id="ContentPrimary">
<ul class="selectors modeSelectors">
    <li><a href="/content/l411846326l1213g/references/" title="">
        <span class="selector">References (27)</span></a></li>
    <li><a href="/content/l411846326l1213g/referrers/" title="">
        <span class="selector">Cited By (2)</span></a></li>
    <li><a href="/content/l411846326l1213g/export-citation/" title="">
        <span class="selector">Export Citation</span></a></li>
    <li><a href="/content/l411846326l1213g/about/" title="">
        <span class="selector">About</span></a></li>
</ul>

在这种情况下,我需要使用Selenium api 查找并单击“ 关于” 链接,但无法执行此操作。

我所做的是

wait.until(new ExpectedCondition<Boolean>() {
    public Boolean apply(WebDriver webDriver) {
        System.out.println("Searching ...");
        String s = driver.findElement(By.cssSelector("#ContentPrimary ul li[4] span.selector")).getText();
        System.out.println(s);
        if (Pattern.compile(Pattern.quote("About"), Pattern.CASE_INSENSITIVE).matcher(s).find()) {
            return true;
        } else {
            return false;
        }
    }
});
driver.findElement(By.linkText("About")).click();

但它不起作用


阅读 259

收藏
2020-06-26

共1个答案

小编典典

以我的经验,Selenium API在这种方式上有很多缺陷。通常只能通过重新选择选择器来克服它们。例如,您可以尝试使用XPath选择器来获取元素:

driver.findElement(By.xpath("//a[contains(.,'About')]")).click();

另外,如果您尝试使用Internet
Explorer,则可能不会单击该元素而是模拟按下Enter键来帮助您。因此,假设找到了Element,则可以尝试以下操作:

driver.findElement(By.linkText("About")).sendKeys(Keys.ENTER);
2020-06-26