如何在无头模式下运行SeleniumIDE测试用例



我正在编写selenium IDE脚本,并希望在无头模式下运行脚本,以便在无头模式下运行烟雾测试时做其他事情

我该怎么做?

您可以添加一个配置文件,默认名称为.side.yml

下面是我的配置文件示例:

capabilities:
browserName: "chrome"
goog:chromeOptions:
args:
- no-sandbox
- disable-dev-shm-usage
- headless
- nogpu

查看下面,有更详细的定义。希望你能得到答案。

https://code.tutsplus.com/tutorials/headless-functional-testing-with-selenium-and-phantomjs--net-30545
https://www.qafox.com/new-selenium-ide-chrome-browser-headless-mode-using-command-line-runner/

尝试在驱动程序参数中指定,如下所示。

ChromeOptions options = new ChromeOptions();
options.addArguments("--headless");
WebDriver driver = new ChromeDriver(options);

相关内容

  • 没有找到相关文章

最新更新