Столкнувшись с проблемой с веб-драйвером selenium chrome в WPF C#
Trying to write automation scripts in wpf c# but not able to launch chrome and also it is not throwing any error, where as in console project, I am able to launch the chrome and also able to write scripts.
ChromeOptions options=new ChromeOptions(); options.AddAdditionalCapability("useAutomationExtention",false); options.AddArgument("--DNS-prefetch-disable"); ChromeDriver _driver=new ChromeDriver(options); //Stucking here in wpf project but it is wrking fine in Console project _driver.Navigate().GoToUrl("https://www.google.co.in")
Что я уже пробовал:
Пытался найти исключение, но оно не выбрасывает никакого исключения, оно просто застревает и не выходит из него