Clicking on javascript anchor with htmlunit does not seem to work

ε祈祈猫儿з 提交于 2019-12-07 11:17:36

问题


I am using htmlunit to automatically go through a website. Here is the problem:

I want to click on an anchor in order to display a new page of a given table.

Here is the anchor:

<a href="javascript:__doPostBack('GridView1','Page$7')">7</a>

Here is my code:

final HtmlAnchor a = page2.getAnchorByText("7");
HtmlPage page3 = a.click();
System.out.println(page2.getWebResponse().getContentAsString())
System.out.println(page3.getWebResponse().getContentAsString());

I do not have any error message. When I compare my print out, they are identical, and yet they shouldn't be, as I just clicked on an anchor. First print out should display a certain page of the table, a the second print out another one.

The stackoverflow post struggling to click on link within htmlunit renders a very similar problem, however his solution (setting the browser version to the webclient) does not appear to work in my case.


回答1:


Maybe you need to wait for the javascript to excute and load first. I suggest to use the following command:

webClient.waitForBackgroundJavaScript(1000);

or even:

JavaScriptJobManager manager = page.getEnclosingWindow().getJobManager();
while (manager.getJobCount() > 0) {
    Thread.sleep(100);
}

and yet another option:

webClient.setAjaxController(new NicelyResynchronizingAjaxController());
webClient.setAjaxController(new AjaxController(){
    @Override
    public boolean processSynchron(HtmlPage page, WebRequest request, boolean async)
    {
        return true;
    }
});


来源:https://stackoverflow.com/questions/12226528/clicking-on-javascript-anchor-with-htmlunit-does-not-seem-to-work

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!