如何使用HtmlUnit在网站中查找或获取触发的Java脚本

时间:2018-07-19 05:41:05

标签: javascript java htmlunit

这是我的代码,任何人都可以帮我这个忙。

先谢谢了。

 public static void main(String args[]) throws IOException {
        WebClient webClient = new WebClient(Browser.CHROME);
        webClient.getOptions().setThrowExceptionOnScriptError(false);
        HtmlPage currentPage = webClient.getPage("https://www.crowndodgechryslerjeep.com/");
        String javaScriptCode = "https://www.googleadservices.com/pagead/conversion_async.js";
        ScriptResult result = currentPage.executeJavaScript(javaScriptCode);
        webClient.getOptions().setJavaScriptEnabled(true);
    }

0 个答案:

没有答案