Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有测试需要在应用程序中使用角色登录,所以我在本地机器上使用 CRTL+Shift+N 进行隐身模式,但是当来到 Saucelabs 时,它无法打开隐身模式。
在使用多个角色场景进行测试时,在隐身模式下运行测试的解决方案是什么?
要在隐身模式下启动 chrome,您需要添加--incognito如下参数:
--incognito
铬合金:
ChromeOptions options = new ChromeOptions(); options.addArguments("--incognito");
火狐:
FirefoxOptions options = new FirefoxOptions(); options.addArguments("-private");
注意:要在场景中间打开隐身模式,请使用上述参数创建另一个 chrome 驱动程序实例。