Selenium:如何等待RichFaces的ajax请求完成

时间:2012-07-05 09:02:33

标签: ajax jsf selenium richfaces selenium-rc

我使用selenium来测试JSF / RichFaces应用程序。由于“未找到元素”错误,测试随机失败。这与Selenium: intermittent “element not found” issues中描述的相同,但它仅与jQuery ajax调用有关。

这里的挑战是让selenium测试执行等待使用selenium.waitForCondition(jsExpression, timeout)完成所有ajax请求。使用RichFaces ajax调用时最好的jsExpression是什么?

2 个答案:

答案 0 :(得分:1)

我调查了为a4j:status生成的html。下面的代码现在完成了这项工作,它比wait()语句更好,但我正在寻找更好的解决方案。

// depends on <a4j:status> present in the page under test
selenium.waitForCondition(          
    "selenium.browserbot.getCurrentWindow().document.getElementById(
    "_viewRoot:status.start\").style.display == 'none'",
    "3000");

答案 1 :(得分:0)

我曾经发现自己和你一样。另外,我有很多实际找到的元素,但是看不到 - JSF还不够快,不能让它们可见。另外,我厌倦了一次又一次地写selenium

所以我坐下来写下面的代码。它等待所有元素出现在页面上并在与它们交互之前可见(或在超时后失败)。我已经转移到WebDriver,所以我没有原始代码,但它是这样的:

public static long WAIT = 10000;    // ten seconds

private void waitForElement(String locator) {
    long targetTime = System.currentTimeMillis() + WAIT;
    boolean found;
    do {
        found = selenium.isElementPresent(locator) && selenium.isVisible(locator);
    } while (!found && (targetTime < System.currentTimeMillis()));
    if (!found) {
        throw new SeleniumException("Element " + locator + " not found");
    }
}

public void click(String locator) {
    waitForElement(locator);
    selenium.click(locator);
}

public void type(String locator, String text) {
    waitForElement(locator);
    selenium.type(locator, text);
}

对于waitForCondition(),这应该是检测元素是否存在的代码:

String locator = "id=anything";
String script =
        "var retValue = true;" +
        "try {" +
        "    selenium.browserbot.findElement('" + locator + "');" +
        "} catch(e) {" +
        "    retValue = false;" +
        "}" +
        "retValue;";
selenium.waitForCondition("!!selenium.browserbot.findElement('" + locator + "')", "10000");
selenium.click(locator);

只是简单的JavaScript:

var retValue = true;
try {
    selenium.browserbot.findElement('" + locator + "');
} catch(e) {
    retValue = false;
}
retValue;