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
In my case I have to run it under Admin, I fixed it by updating .NET framework. You can update this in Windows Update. I updated every item that is related to .NET framework, including crucial ones and optional ones.
Here are two items I updated:
2018-01 Preview of Quality Rollup for .NET framework (KB4057272)
.NET framework 4.7.1 (KB4033369)
Hope this helps
Edit: I run Win 10 with chromedriver 2.34 and Chrome v64.0.3282.140(64-bit)
I have the same issue but my situation is I tried to open visual studio with different profile.When i am opening visual studio with default profile its working fine.So i guess its profile issue.
My problem was that my Windows temp folder was on a drive (D) that is not my primary Windows drive (C) and that I had also mapped that drive to a sub-folder of C.
Note that step #4 was important. The plugin would still crash if this was present.
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