Selenium Crashing: Chrome automation extension has crashed

后端 未结 10 1383
花落未央
花落未央 2020-12-29 22:05

I am using Selenium web drivers, and today, for no apparant reason I started getting an error with the message\"Chrome Automation Extension has crashed. Click this balloon

10条回答
  •  孤城傲影
    2020-12-29 22:37

    I had the same issue, using Python with Selenium

    options = webdriver.ChromeOptions();
    options.add_argument("--no-sandbox")
    driver = webdriver.Chrome(options=options,executable_path="../drivers/chromedriver.exe")
    

    The above piece of code resolved my issue

提交回复
热议问题