web-dev-qa-db-ja.com

アンカータグを見つけてクリックするためのselenium webdriver

<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を使用してAboutリンクを見つけてクリックする必要がありますが、実行できませんでした。

私がしたことは

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

しかし、それは機能していません

13

私の経験では、Selenium APIにはそのように多くの欠陥があります。ほとんどの場合、セレクターを再構成することによってのみ克服できます。たとえば、XPathセレクターを使用して要素を取得することができます。

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

また、Internet Explorerを使用しようとしている場合は、要素をクリックせずに、Enterボタンの押し込みをシミュレートすると役立つ場合があります。したがって、要素が見つかったと仮定して、これを試すことができます:

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

ExpectedConditions を使用できます。

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