ERROR:process_metrics.cc NOT IMPLEMENTED error

后端 未结 3 1631
南方客
南方客 2020-12-17 06:01

Recently, we\'ve started to get these kind of warnings on the console when running Protractor tests:

[12252:14584:1207/223118.187:ERROR:process_metrics.cc(10         


        
3条回答
  •  旧时难觅i
    2020-12-17 06:16

    You should be able to pass the --silent flag to chromedriver in your conf file. Something like:

    capabilities: {
        browserName' : 'chrome',
            'chromeOptions' : {
                args: ['--silent']
            }
        }
    }
    

提交回复
热议问题