如何将 Google Chrome 与 Selenium RC 的开发者工具结合使用

发布于 2024-10-12 21:42:36 字数 274 浏览 6 评论 0原文

我可以像这样打开 google chrome 浏览器:

selenium = new DefaultSelenium(Server, ServerPort,
                                          "*googlechrome", DomainURL);

但是在启用 Chrome 开发人员工具的情况下打开它会非常有用,以便能够在开发测试时调试问题。

我无法启用它们,有人知道吗?

提前致谢

I can open a google chrome browser like this:

selenium = new DefaultSelenium(Server, ServerPort,
                                          "*googlechrome", DomainURL);

but it would be really useful to have it opened with the Chrome Developer Tools enabled, to be able to debug problems when developing the tests.

I can't manage to enable them, anybody knows about this?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟酉 2024-10-19 21:42:36

您需要使用启用了开发人员工具的自定义配置文件。每次您使用 Selenium 时,都会以新的干净配置文件启动 Chrome。 Selenium 1 没有提供覆盖这一点的机制。然而,Selenium 2 的 ChromeDriver 可以使用示例配置文件。

您可以尝试使用 Firefox 和 Firebug

You need to use a custom profile that have developer tools enabled. Selenium is starting Chrome with a new clean profile each and every time you use it. Selenium 1 does not offer a mechanism for overriding this. Selenium 2's ChromeDriver, however, can use an example profile.

You can try using Firefox with Firebug

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