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