以Chrome访客模式启动量角器

时间:2018-07-19 11:51:02

标签: protractor selenium-chromedriver

我需要使用量角器的来宾个人资料启动多个Chrome浏览器实例。我当前的配置就像-

multiCapabilityArray[i] = {
		'browserName': 'chrome',
		'chromeOptions': {
			'args': ['incognito', '--no-sandbox']
		}
	}

我正在寻找以下内容-

multiCapabilityArray[i] = {
    'browserName': 'chrome',
    'chromeOptions': {
        'args': ['incognito', '--no-sandbox'],
        'prefs': {enter-something-here-to-make-the-magic-happen}
    }
}

请分享是否有实现此目标的方法。

1 个答案:

答案 0 :(得分:0)

在测试中尝试以下chrome设置。

'browserName': 'chrome',
'chromeOptions': {
    'args': ['--incognito', '--no-sandbox']
}

只需在--之前添加incognito。 希望以上解决方案对您有帮助

0506