硒的webdriver找到锚标记,并点击(selenium webdriver to find th

2019-06-24 20:32发布

<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();

但它不工作

Answer 1:

在我的经验,硒API有那样的许多缺陷。 他们大多可只有重新制定你的选择来克服。 例如,你可以尝试使用XPath的选择,让您的元素:

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

另外,如果你想使用Internet Explorer它可能会帮助不单击该元素,而是以模拟按下回车键。 所以assumung元素被发现,你可以试试这个:

driver.findElement(By.linkText("About")).sendKeys(Keys.ENTER);


Answer 2:

您可以使用ExpectedConditions :

wait.until(visibilityOfElementLocated(By.linkText("About"))).click();


文章来源: selenium webdriver to find the anchor tag and click that