-2

嗨,您知道在哪里可以找到与 Webdriver 协议一起使用的浏览器功能的完整列表吗?

我需要理解这一点才能使用更好的 Webdriver.io,但任何 Webdriver 客户端都应该使用我想的相同列表。

例如在 wdio.conf.js 中,对于 Chrome,我们可以添加

'chromeOptions': {
                args: ['--start-fullscreen']
}

支持哪些其他参数 - 完整列表 - 以及除 args 之外还有哪些其他选项可用。

找不到所有主要浏览器的完整列表:chrome、safari、firefox、edge...

谢谢

更新:老实说,我一直在网上搜索很多,但 args 的完整列表并不容易找到(除了 chrome 的那个)。因此,我将保留此答案,一旦找到更多信息,我将更新该帖子。

4

2 回答 2

0

W3C 定义了每个实现必须支持的通用WebDriver 功能。

(W3C 工作草案 2021 年 11 月 22 日)

  • browserName
  • browserVersion
  • platformName
  • acceptInsecureCerts
  • pageLoadStrategy
  • proxy
  • setWindowRect
  • timeouts
  • strictFileInteractability
  • unhandledPromptBehavior
于 2022-01-30T22:38:14.913 回答