Exemplo n.º 1
0
 public IWebElement FindElementById(string id)
 {
     try
     {
         return(new WebElementAdapter(syncWebElement.FindElementById(id), driver));
     }
     catch (Zu.WebBrowser.BasicTypes.WebBrowserException webDriverException)
     {
         throw WebDriverConverters.ToSeleniumException(webDriverException);
     }
     catch { throw; }
 }
 public IWebElement FindElementById(string id)
 {
     return(new WebElementAdapter(syncWebElement.FindElementById(id)));
 }