Hello world! I'm trying to connect to and manage an already running chromium at 127.0.0.1:4444.Here's my C# code:
ChromeOptions options = new ChromeOptions();
Uri serverUri = new Uri("
http://127.0.0.1:4444/wd/hub");
IWebDriver driver = new RemoteWebDriver(serverUri, options. ToCapabilities()); I have been suffering with this issue for two days now, but I get this error: OpenQA.Selenium.WebDriverException: 'The newSession command returned an unexpected error. '
Can anyone know and tell me?