在 Firefox 中使用 Selenium 时如何禁用图像和 Flash 加载?
当在 Firefox 3 中通过 Selenium RC 运行 selenium 测试时,启动运行测试的 Firefox 实例始终显示图像,即使我已将 Firefox 3 设置为不显示图像。
有谁知道如何禁用图像加载?
我还想禁用 Flash 在测试页面上的加载。
When running selenium tests through Selenium RC in Firefox 3, the instance of Firefox that launches to run the tests in always displays images even though I've setup Firefox 3 to not display images.
Do anyone know how to disable the images from loading?
I'd also like to disable flash from loading on the test pages as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您从命令行启动 selenium RC 时,您可以提供 -firefoxProfileTemplate 的命令行参数,其中 dir 是您希望使用的 Firefox 配置文件的位置。 示例:
java -jar selenium-server.jar -firefoxProfileTemplate "C:\Documents and Settings\YOUR_USERNAME\Application Data\Mozilla\Firefox\Profiles\gj4zmzhp.default"
然后,您可以配置您的 Firefox 配置文件使用您认为合适的任何方式。 要禁用 Flash,您可以转到 Firefox 中的工具 -> 附加组件,然后在插件选项卡中禁用Shockwave Flash插入。
When you launch selenium RC from the command line, you can provide the command line arguement of -firefoxProfileTemplate , where dir is the location of the Firefox profile you wish to use. Example:
java -jar selenium-server.jar -firefoxProfileTemplate "C:\Documents and Settings\YOUR_USERNAME\Application Data\Mozilla\Firefox\Profiles\gj4zmzhp.default"
You can then configure the Firefox profile your using anyway you see fit. To disable flash, you can go to the tools->Add-ons in Firefox and then in the Plugins tab, disable the Shockwave Flash plugin.