在Protractor中运行测试用例后,Chrome实例不会关闭

时间:2018-04-17 10:46:02

标签: google-chrome automation protractor

当我多次运行测试时,Chrome实例不会因为哪个PC利用率趋于100%而关闭。所以,我必须手动结束Chrome实例。可能有办法解决这个问题吗?

解决方案:

chromeOptions: {
        args: ["--disable-gpu"]
    },

在配置文件" Disable-gpu"负责在渲染时出现问题时禁用铬的加速(如果发生故障)。

2 个答案:

答案 0 :(得分:0)

默认情况下,量角器会在测试执行后关闭chrome实例,除非测试以不可调和的方式失败。因此,请尝试将protractor.conf.js设置重置为默认值

答案 1 :(得分:0)

另一个对我们公司的每个人都有效的解决方案是从配置文件中删除"--no-sandbox"参数来自看似这样的行

chromeOptionsArgs = ["incognito", "--window-size=1920,1080", "disable-extensions", "start-maximized", "--no-sandbox", "--test-type=browser"];