The application Selenium, after running the console remains on the screen. Threw everything out of the code, left only the initialization and closing of the driver - everything is still the same. What to do?
using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using System; namespace Myspace { class Program { static void Main(string[] args) { IWebDriver driver = new ChromeDriver(); driver.Close(); } }