From: Gael H. <gae...@ho...> - 2005-05-11 07:39:13
|
I believe HtmlUnit uses Tidy for cleaning Html pages, but is it possible to disable it ? Htmlunit doesn't succeed in finding a submint button because of the transformed web page. Tidy tranform this : <form> <table> <table> <input ... > </table> <form> </table> into this: <form> <table> </table> <form> <table> <input ... > </table> and so HtmlUnit doesn't find the input in the form. |