Ejemplo n.º 1
0
 public void SendKeys(string text)
 {
     try
     {
         syncWebElement.SendKeys(text);
     }
     catch (Zu.WebBrowser.BasicTypes.WebBrowserException webDriverException)
     {
         throw WebDriverConverters.ToSeleniumException(webDriverException);
     }
     catch { throw; }
 }
 public void SendKeys(string text)
 {
     syncWebElement.SendKeys(text);
 }