ERROR:process_metrics.cc NOT IMPLEMENTED error

后端 未结 3 1588
南方客
南方客 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条回答
  • 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']
            }
        }
    }
    
    0 讨论(0)
  • 2020-12-17 06:29

    It seems to be an issue with chrome v63

    https://github.com/SeleniumHQ/selenium/issues/5189#issuecomment-351605839

    0 讨论(0)
  • 2020-12-17 06:40

    "This warning message was generated by a bug in Chrome v63.

    Upgrading to v64 (64.0.3282.167 as of this morning) resolves it."

    0 讨论(0)
提交回复
热议问题