我已经开始学习HTTPUNIT,并找到了一个基本示例。

在此示例中,它将访问此site
然后它将搜索包含HTTPUNIT的链接。并且它将在HTTPUNIT上打印链接数。我在我的机器上尝试了这个示例,它可以工作。

        WebConversation wc = new WebConversation();
        WebRequest request = new GetMethodWebRequest( "http://www.meterware.com" );
        WebResponse response = wc.getResponse( request );
        WebLink httpunitLink = response.getFirstMatchingLink( WebLink.MATCH_CONTAINED_TEXT, "HttpUnit" );
        response = httpunitLink.click();
        System.out.println( "The HttpUnit main page contains " + response.getLinks().length + " links" );


现在我将代码更改为

  WebConversation wc = new WebConversation();
  WebRequest request = new GetMethodWebRequest( "http://www.google.com" );
  WebResponse response = wc.getResponse( request );
  WebLink httpunitLink = response.getFirstMatchingLink( WebLink.MATCH_CONTAINED_TEXT, "News" );
  response = httpunitLink.click();
  System.out.println( "The HttpUnit main page contains " + response.getLinks().length + " links" );


现在,它给出了下面的错误。

ConversionError: The undefined value has no properties. (httpunit; line 4)


为什么它不能访问Google新闻并获得链接数?

先感谢您。

最佳答案

Google主页是通过JavaScript呈现的。

HTTPUNIT具有partial support for JavaScript。如果您需要使用大量JavaScript测试页面,请查看Selenium

09-27 08:32