如何将 Google Chrome 与 Selenium RC 的开发者工具结合使用
我可以像这样打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用启用了开发人员工具的自定义配置文件。每次您使用 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