Exemplo n.º 1
0
 public void SendKeys(string text)
 {
     SearchElementUtil.WaitElement(driver, locator, timeoutsec);
     if (text != string.Empty)
     {
         element.SendKeys(text);
     }
 }
Exemplo n.º 2
0
 public void Click()
 {
     SearchElementUtil.WaitElement(driver, locator, timeoutsec);
     element.Click();
 }