I have come across a few people with the same issue that seemed to have solved the problem with System.addProperty(\"webdriver.chrome.driver\", \".../chromedriver.exe\");<
If you're using Atata and .Net Core, see this page: https://atata.io/getting-started/#dot-net-core-configuration
AtataContext.Configure()
.UseChrome()
.WithFixOfCommandExecutionDelay()
.WithLocalDriverPath()
.UseCulture("en-us")
.Build();
these are the lines you want to make sure you have:
.UseChrome()
.WithFixOfCommandExecutionDelay()
.WithLocalDriverPath()