Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何其他选项可以在 HtmlUnit 中禁用 javascript。在导航 HtmlUnit 时,它不会在无限循环中进一步处理它,所以我试图使用以下代码禁用 javascript
webClient.setJavaScriptEnabled(false)
但它不工作。
根据htmlunit.sourceforge.net/apidocs上的文档,正确的形式应该是:
webClient.getOptions().setJavaScriptEnabled(false)