5

我试图让 HtmlUnitDriver 在我的开发环境中工作。作为初学者,我尝试使用最新的 selenium 服务器 jar 实现以下页面中的示例: http ://code.google.com/p/selenium/wiki/GettingStarted

不幸的是,每当我尝试运行该程序时,都会出现以下异常:

Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to locate element with name: q
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Build info: version: '2.35.0', revision: 'c916b9d', time: '2013-08-12 15:42:01'
System info: os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_16'
Driver info: driver.version: HtmlUnitDriver
    at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElementByName(HtmlUnitDriver.java:853)
    at org.openqa.selenium.By$ByName.findElement(By.java:292)
    at org.openqa.selenium.htmlunit.HtmlUnitDriver$5.call(HtmlUnitDriver.java:1404)
    at org.openqa.selenium.htmlunit.HtmlUnitDriver$5.call(HtmlUnitDriver.java:1)
    at org.openqa.selenium.htmlunit.HtmlUnitDriver.implicitlyWaitFor(HtmlUnitDriver.java:1094)
    at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElement(HtmlUnitDriver.java:1401)
    at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElement(HtmlUnitDriver.java:419)
    at Justin.Main.main(Main.java:30)

我尝试修改我的代码以合并此处实施的修复:

HtmlUnitDriver 在获取 url 时导致问题

我尝试driver.getCurrentUrl()在调用后使用获取页面的 URL driver.get("http://www.google.com"),但返回的字符串是about:blank.

如果我使用 FirefoxDriver 运行此示例中的类似代码,它肯定会起作用,但为了满足要求,我需要我的脚本使用 selenium 无头运行(只要它是无头的,可以使用特定的 BrowserVersion 运行) .

任何帮助将不胜感激。

更新:

这是我现在要运行的代码。我只是想看看我可以让 HtmlUnitDriver 处理一些简单的事情,比如在 Google 中输入搜索查询。

package Justin;


import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;


public class Main {
public static void main(final String[] args) {
    // Create a new instance of the html unit driver
    // Notice that the remainder of the code relies on the interface,
    // not the implementation.
    final WebDriver driver = new HtmlUnitDriver();
    ((HtmlUnitDriver)driver).setJavascriptEnabled(true);

    // And now use this to visit Google
    driver.get("http://www.google.com");

    try {
        Thread.sleep(30000);
    } catch (final InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    // Find the text input element by its name
    final WebElement element = driver.findElement(By.name("q"));

    // Enter something to search for
    element.sendKeys("Cheese!");

    // Now submit the form. WebDriver will find the form for us from the element
    element.submit();

    // Check the title of the page
    System.out.println("Page title is: " + driver.getTitle());

}
}

更新 2:

这个问题非常离奇。我在家中的计算机上尝试了相同的代码,并且在 BrowserVersion 设置为 Firefox 或 Internet Explorer 时它运行良好。这个问题肯定是由我工作场所的计算机配置引起的,尽管我仍然不知道为什么会发生这种情况。

4

6 回答 6

1

在给出的示例代码中,它假定存在具有 name=q 搜索字段的旧 Google 页面。

该页面不再以这种方式标记-尝试更改driver.findElement(By.name("q"))driver.findElement(By.cssSelector("input[id=gbqfq]")并查看是否可以解决您的问题-至少在加载页面后它应该能够输入到搜索栏。

如果您driver.getCurrentUrl()在尝试获取页面后立即调用,它可能没有完全加载,而是返回 about:blank。

如果这不起作用,我们可以继续进行故障排除 - 使用无头浏览器更难看到实际发生的情况,因此您可能需要暂时切换到 FirefoxDriver 以准确可视化正在发生的事情。

于 2013-10-02T14:33:13.800 回答
1

生病尝试给它一个镜头:

如果是网络问题,请下载此工具检查您连接的端口是否正在使用: http ://technet.microsoft.com/en-us/sysinternals/bb897437.aspx

对于这类情况非常方便。

如需进一步调试,请尝试读出源代码。将此行放在第一个元素选择器之前和页面加载之后。:

System.out.println(driver.getPageSource());

我想知道元素是否存在..

于 2013-10-09T19:56:16.220 回答
0

尝试使用

HtmlUnitDriver driver = new HtmlUnitDriver();

您可以通过检查来检查页面是否已加载

String pageTitle = driver.getTitle();
于 2014-03-26T06:30:28.093 回答
0

如果您需要无头 selenium,并且 firefox 可用于您的测试,请尝试使用 phantomjs webdriver。

于 2014-05-03T04:40:58.700 回答
0

尝试在 Firefox 中使用Selenium IDE插件,看看它在执行操作时会抓取什么。您可以将代码导出到 java,然后尝试运行它。我还将逐步检查家庭和工作计算机上的代码,看看是否有任何差异。由于 DOM 有时间完全加载,我在单步执行时看到了代码工作(当发生该元素未找到错误时)。此外,尝试实例化和实际浏览器,以便您可以直观地看到发生了什么。

此外,验证您在家庭和工作站之间使用的所有软件的版本。

于 2013-10-07T22:55:15.110 回答
0

1)尝试添加

driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

final WebElement element = driver.findElement(By.name("q"));

2)或尝试

 try {
      WebElement element = driver.findElement(By.name("q"));
    } catch (Exception e) {
      Thread.sleep(1000);  
    }
于 2013-10-11T19:05:56.443 回答