|
From: jplistero <jpl...@gm...> - 2017-04-02 11:56:08
|
Hi there,
nevermind, issue solved with this setup:
webClient.setAjaxController(new NicelyResynchronizingAjaxController());
full setup
try (final WebClient webClient = new WebClient(BrowserVersion.getDefault()))
{
webClient.setJavaScriptTimeout(15000);
webClient.getOptions().setJavaScriptEnabled(true);
webClient.getOptions().setThrowExceptionOnScriptError(false);
webClient.getOptions().setCssEnabled(false);
webClient.setAjaxController(new NicelyResynchronizingAjaxController());
webClient.getOptions().setThrowExceptionOnScriptError(false);
....
best
--
View this message in context: http://htmlunit.10904.n7.nabble.com/click-doesn-t-work-tp41322p41343.html
Sent from the HtmlUnit - General mailing list archive at Nabble.com.
|