admin管理员组文章数量:1344628
I'm trying to call the function showPage('3');
of this page, for use the page source code after. I tried to do with htmlUnit
like so:
WebClient webClient = new WebClient();
webClient.waitForBackgroundJavaScriptStartingBefore(10000);
HtmlPage page = webClient.getPage(";maxEventDate=31012014&tp=searchForm.thismonth<p=gennaio");
String javaScriptCode = "showPage('3');";
ScriptResult result = page.executeJavaScript(javaScriptCode);
result.getJavaScriptResult();
System.out.println("result: "+ result);
But it's not working. It prints out:
result: net.sourceforge.htmlunit.corejs.javascript.Undefined@a303147
and other 10000 warnings. What am I doing wrong? I need to change the page of this site for do some crawling on the source code. Is there another way (and maybe more easier) for calling jsp-function from Java code and then navigate in the source of the page? Thank you for any help, have a nice day.
I'm trying to call the function showPage('3');
of this page, for use the page source code after. I tried to do with htmlUnit
like so:
WebClient webClient = new WebClient();
webClient.waitForBackgroundJavaScriptStartingBefore(10000);
HtmlPage page = webClient.getPage("http://www.visittrentino.it/it/cosa_fare/eventi/risultati?minEventDate=09012014&maxEventDate=31012014&tp=searchForm.thismonth<p=gennaio");
String javaScriptCode = "showPage('3');";
ScriptResult result = page.executeJavaScript(javaScriptCode);
result.getJavaScriptResult();
System.out.println("result: "+ result);
But it's not working. It prints out:
result: net.sourceforge.htmlunit.corejs.javascript.Undefined@a303147
and other 10000 warnings. What am I doing wrong? I need to change the page of this site for do some crawling on the source code. Is there another way (and maybe more easier) for calling jsp-function from Java code and then navigate in the source of the page? Thank you for any help, have a nice day.
Share Improve this question edited Jan 30, 2014 at 11:45 BenMorel 36.7k52 gold badges205 silver badges337 bronze badges asked Jan 9, 2014 at 15:21 Der FedeDer Fede 731 gold badge1 silver badge5 bronze badges1 Answer
Reset to default 7You print the ScriptResult object not the content of the page,change the SOP code to result.getNewPage()
本文标签: calling a JavaScript function with HTMLUnitStack Overflow
版权声明:本文标题:calling a JavaScript function with HTMLUnit - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743746081a2531781.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论