使用htmlunit -Java访问Javascript生成的html

时间:2010-06-02 22:05:31

标签: java javascript html-parsing htmlunit

我正在尝试测试一个使用javascript来呈现大部分HTML的网站。使用HTMLUNIT浏览器,您如何能够访问由javascript生成的html?我正在浏览他们的文档,但不确定最佳方法是什么。

WebClient webClient = new WebClient();
HtmlPage currentPage = webClient.getPage("some url");
String Source = currentPage.asXml();
System.out.println(Source);

这是获取页面html的简单方法,但是你会使用domNode或其他方式来访问javascript生成的html吗?

2 个答案:

答案 0 :(得分:9)

你需要花点时间让JavaScript执行。

检查下面的示例工作代码。 bucket div不在原始来源中。

import java.io.IOException;
import java.net.MalformedURLException;
import java.util.List;
import com.gargoylesoftware.htmlunit.*;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

public class GetPageSourceAfterJS {
    public static void main(String[] args) throws FailingHttpStatusCodeException, MalformedURLException, IOException {
        java.util.logging.Logger.getLogger("com.gargoylesoftware").setLevel(java.util.logging.Level.OFF); /* comment out to turn off annoying htmlunit warnings */
        WebClient webClient = new WebClient();
        String url = "http://www.futurebazaar.com/categories/Home--Living-Luggage--Travel-Airbags--Duffel-bags/cid-CU00089575.aspx";
        System.out.println("Loading page now: "+url);
        HtmlPage page = webClient.getPage(url);
        webClient.waitForBackgroundJavaScript(30 * 1000); /* will wait JavaScript to execute up to 30s */

        String pageAsXml = page.asXml();
        System.out.println("Contains bucket? --> "+pageAsXml.contains("bucket"));

        //get divs which have a 'class' attribute of 'bucket'
        List<?> buckets = page.getByXPath("//div[@class='bucket']");
        System.out.println("Found "+buckets.size()+" 'bucket' divs.");

        //System.out.println("#FULL source after JavaScript execution:\n "+pageAsXml);
    }
}

输出:

Loading page now: http://www.futurebazaar.com/categories/Mobiles-Mobile-Phones/cid-CU00089697.asp‌​x?Rfs=brandZZFly001PYXQcurtrayZZBrand
Contains bucket? --> true
Found 3 'bucket' divs.

使用的HtmlUnit版本:

<dependency>
    <groupId>net.sourceforge.htmlunit</groupId>
    <artifactId>htmlunit</artifactId>
    <version>2.12</version>
</dependency>

答案 1 :(得分:1)

假设问题是由于AJAX调用而由JavaScript生成的HTML,您是否尝试过'AJAX does not work' section in the HtmlUnit FAQ

howtos about how to use HtmlUnit with JavaScript中还有一个部分。

如果您的问题没有在这里得到解答,我认为我们需要一些更具体的细节才能提供帮助。