Continue working while running selenium

2

I try to open a selenium button, but it works on the same thread as the form, so how can I continue working on the form, this is the code

IWebDriver driver = new FirefoxDriver();

driver.Navigate().GoToUrl("https://google.com");

driver.FindElement(By.XPath("ElElemento]")).Click();
driver.close();
    
asked by Gabriel Lugo 15.10.2018 в 02:23
source

0 answers