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

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

4

2 に答える 2

26

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

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

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

driver.findElement(By.linkText("About")).sendKeys(Keys.ENTER);
于 2012-05-27T12:34:18.393 に答える
2

ExpectedConditionsを使用できます:

wait.until(visibilityOfElementLocated(By.linkText("About"))).click();
于 2012-05-27T12:56:56.137 に答える