I have a below code. after ds.Click();
one file will be downloaded to downloads folder, the file will be as a .ica extension.
IWebDriver cobj = new ChromeDriver();
cobj.Navigate().GoToUrl("https://XX.xxx.xx");
IWebElement u = cobj.FindElement(By.Name("login"));
IWebElement p = cobj.FindElement(By.Name("passwd"));
IWebElement b = cobj.FindElement(By.Id("Log_On"));
u.SendKeys("username");
p.SendKeys("password");
b.Click();
IWebElement d = cobj.FindElement(By.Id("folderLink_0"));
d.Click();
IWebElement ds = cobj.FindElement(By.Id("idCitrix.Production"));
ds.Click();
How to open that file?