Error:cannot get automation extension for chrome with selenium

后端 未结 1 1772
臣服心动
臣服心动 2020-12-22 01:06

Iam getting below Exception when i run test case ,this is happening after my chrome browser got updated to 62.0 version. I have updated chrome driver to 2.33 version ,even

相关标签:
1条回答
  • 2020-12-22 02:06

    The error says it all WebDriverException: unknown error: cannot get automation extension

    As per your Error Stack Trace you are using :

    • chromedriver=2.29
    • chrome=62.0

    The Release Notes of chromedriver=2.29 clearly mentions the following :

    Supports Chrome v56-58

    The Release Notes of chromedriver=2.33 clearly mentions the following :

    Supports Chrome v60-62

    Solution :

    The solution will be either to upgrade chromedriver binary to v2.33 levels or to downgrade your Chrome Browser binary to v56-58

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