在 Firefox 中使用 Selenium 时如何禁用图像和 Flash 加载?

发布于 2024-07-18 17:55:06 字数 159 浏览 2 评论 0原文

当在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-07-25 17:55:06

当您从命令行启动 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文