在我的应用程序中,我收到阻止该应用程序的 OpenQA.Selenium.WebDriverTimeoutException 。
如何在不阻止应用程序的情况下关闭已超时的浏览器?
driveriso.Navigate().GoToUrl("http://*******");
IWebElement userTextBox = driveriso.FindElement(By.Id("login-username"));
userTextBox.Clear();
userTextBox.SendKeys(user);
IWebElement passTextBox = driveriso.FindElement(By.Id("login-password"));
passTextBox.Clear();
passTextBox.SendKeys(pass);
IWebElement logButton = driveriso.FindElement(By.Id("login-button"));
logButton.Click();
谢谢