在htmlunit中过滤外部加载的javascript
在使用 htmlunit 抓取网页时,我偶尔会注意到控制台输出中出现类似这样的警告。
Jul 24, 2011 5:12:59 PM com.gargoylesoftware.htmlunit.javascript.StrictErrorReporter warning
WARNING: warning: message=[Calling eval() with anything other than a primitive string value
will simply return the value. Is this what you intended?] sourceName=[http://ad.doubleclick.net/adj/N5762.morningstar.com/B5553006.25;sz=728x90;click0=http://ads.morningstar.com/RealMedia/ads/click_lx.ads/www.morningstar.com/quicktake/fund/L34/648978540/TopLeft/Morningstar/JPM_FRpt_728x90_Jul_3827448/Fund_Reports_728x90_content.html/656d5477595534723465554144664a2b?;ord=648978540?] line=[356] lineSource=[null] lineOffset=[0]
有没有办法让 htmlunit 忽略
甚至只是
同样,有没有办法让 htmlunit 只解释包含特定子字符串或匹配正则表达式的网页上的 JavaScript?
While using htmlunit to scrape a webpage, I occasionally notice warnings like these that flood the console output.
Jul 24, 2011 5:12:59 PM com.gargoylesoftware.htmlunit.javascript.StrictErrorReporter warning
WARNING: warning: message=[Calling eval() with anything other than a primitive string value
will simply return the value. Is this what you intended?] sourceName=[http://ad.doubleclick.net/adj/N5762.morningstar.com/B5553006.25;sz=728x90;click0=http://ads.morningstar.com/RealMedia/ads/click_lx.ads/www.morningstar.com/quicktake/fund/L34/648978540/TopLeft/Morningstar/JPM_FRpt_728x90_Jul_3827448/Fund_Reports_728x90_content.html/656d5477595534723465554144664a2b?;ord=648978540?] line=[356] lineSource=[null] lineOffset=[0]
Is there a way that I can have htmlunit ignore javascript from
or even just
Likewise, is there a way to have htmlunit only interpret the javascript on a webpage containing a particular substring or matching a regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以通过实现自己的 JavaScript 来删除不需要的 JavaScript
ScriptPreProcessor。您的 ScriptPreProcessor 可以检测到您不想执行的 jsvascript,然后将其从网站中删除。
我还没有尝试过,但可能有用。
You might be able to remove the unwanted javascript by implementing your own
ScriptPreProcessor. Your ScriptPreProcessor could detect the jsvascript you do not want to execute and than remove it from the web site.
I have not tried it yet, but might work.