2

我正在尝试在无头浏览器(htmlUnit WebdriverphamtomJs)中运行我的 selenium 测试。但是无论我使用什么,执行 javascript 代码都会引发一些异常,或者当我尝试使用将在我正在测试的 html 页面中使用 javascript 的事件时出错。

我无法理解为什么它不能工作。

这是我正在尝试的脚本:

public class Test {
static WebDriver driver;
static Wait<WebDriver> wait;
public static void main(String[] args) {
//      File file = new File("C:/phantomjs-2.1.1-windows/bin/phantomjs.exe");             
//      System.setProperty("phantomjs.binary.path", file.getAbsolutePath());
//      DesiredCapabilities caps = new DesiredCapabilities();
//      caps.setJavascriptEnabled(true);
//      driver = new PhantomJSDriver(caps);
    driver = new HtmlUnitDriver(true);//true to enable the JS
    wait = new WebDriverWait(driver, 3000);
    final String url = "https://localhost:8444/myApp/";

    JavascriptExecutor js = (JavascriptExecutor) driver;

    try {
        driver.navigate().to(url);
        js.executeScript("document.getElementsByName('formLogin')[0].checked = true;");
        By usernameInput = By.xpath("//input");
        By passwordInput = By.xpath("//div[2]/div/div/input");
        By submitButton = By.xpath("//a[contains(@href, '#')]");

        wait.until(ExpectedConditions.visibilityOfElementLocated(usernameInput));
        wait.until(ExpectedConditions.visibilityOfElementLocated(passwordInput));
        wait.until(ExpectedConditions.visibilityOfElementLocated(submitButton));

        WebElement log = driver.findElement(usernameInput);
        WebElement pass = driver.findElement(passwordInput);
        WebElement click = driver.findElement(submitButton);

        log.sendKeys("root");
        pass.sendKeys("pass");
        click.click();

        By headerId = By.className("header");

        wait.until(ExpectedConditions.visibilityOfElementLocated(headerId));


        System.out.println("Page title is: " + driver.getTitle()); 
        String var = (String) js.executeScript("var truc = 'bonjour'; return truc;");
        System.out.println(var);
    } finally  {
        driver.close();
    }

}

这一个我有多个:

ReferenceError:未定义“xxx”。(urlOfmyAPp/jsp/ihm.js?ts=0.1975212200823856#1451)

xxx一个 javascript 元素的位置。

我有这个脚本的另一个版本,但是使用 firefox WebDriver,它运行良好。但我不明白为什么它不能与htmlUnitDriver.

有人可以解释为什么它失败了吗?谢谢。

4

0 回答 0