From: Arya F. <ary...@gm...> - 2015-09-14 19:50:43
|
Hi Teryl Yes it is possible look at the example below. I have not compiled it but that's the idea new WebConnectionWrapper(webClient) { public WebResponse getResponse(WebRequest request) { WebResponse response = null; try { response = super.getResponse(request); System.out.println(request.getUrl().toString() } catch (Exception e) { e.printStackTrace(); } return response; } }; } On Mon, Sep 14, 2015 at 10:44 PM, Teryl Taylor <ter...@gm...> wrote: > Hi everyone, > > Is there an easy way to get the list of URLs that HTMLUnit requests during > its interaction with a website? > > Cheers, > > Teryl > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Htmlunit-user mailing list > Htm...@li... > https://lists.sourceforge.net/lists/listinfo/htmlunit-user > > |