Selenium RC 浏览器启动器列表

发布于 2024-08-27 04:55:30 字数 504 浏览 4 评论 0原文

我正在尝试查找 Selenium RC 浏览器启动器的完整列表。到目前为止,我还没有找到任何列出它们的文档。我从各种来源收集了以下内容。

  • *iexplore - 启动 IE
  • *firefox - 启动 Firefox
  • *safari - 启动 Safari
  • *opera - 启动 Opera
  • *googlechrome - 启动 Google Chrome
  • *chrome - 启动具有提升的安全权限的特殊 Firefox 配置文件,以绕过 Javascript 安全错误
  • *iehta - 启动具有提升的 IE安全权限
  • *piiexplore - 在代理注入模式下启动 IE
  • *pifirefox - 在代理注入模式下启动 Firefox
  • *custom - 启动您自己的自定义浏览器可执行文件

还有其他潜伏在那里吗?有没有关于如何使用每一个的文档来源?

I am trying to find a full list of Selenium RC browser launchers. So far I've not been able to find any documentation that lists them all. I've gathered the following ones from various sources.

  • *iexplore - Launches IE
  • *firefox - Launches Firefox
  • *safari - Launches Safari
  • *opera - Launches Opera
  • *googlechrome - Launches Google Chrome
  • *chrome - Launches special Firefox profile with elevated security privileges, to bypass Javascript security errors
  • *iehta - Launches IE with elevated security privileges
  • *piiexplore - Launches IE in proxy injection mode
  • *pifirefox - Launches Firefox in proxy injection mode
  • *custom - Launches your own custom browser executable

Are there any others lurking out there? Is there any source of documentation on how each one is used?

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

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

发布评论

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

评论(1

烟凡古楼 2024-09-03 04:55:30

如果您尝试使用错误的浏览器 ID 启动 Selenium 会话

,例如

selenium = new DefaultSelenium("localhost", server.getPort(),
                "*gf", "http://www.eviltester.com");

然后selenium 1.0.3将报告以下列表:

支持的浏览器包括:

  • firefox
  • mock
  • firefoxproxy
  • pifirefox
  • chrome
  • iexploreproxy
  • iexplore
  • firefox3
  • safariproxy
  • googlechrome
  • konqueror
  • firefox2
  • safari
  • piiexplore
  • firefoxchrome
  • opera
  • iehta
  • custom

这列出的比您多一些。

If you try and start a selenium session with the wrong browser id

e.g.

selenium = new DefaultSelenium("localhost", server.getPort(),
                "*gf", "http://www.eviltester.com");

Then selenium 1.0.3 will report the following list:

Supported browsers include:

  • firefox
  • mock
  • firefoxproxy
  • pifirefox
  • chrome
  • iexploreproxy
  • iexplore
  • firefox3
  • safariproxy
  • googlechrome
  • konqueror
  • firefox2
  • safari
  • piiexplore
  • firefoxchrome
  • opera
  • iehta
  • custom

This lists a few more than you have.

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