Ejemplo n.º 1
0
 public void PressKeyEnter()
 {
     BrowserFramework.FindWebElement(this).SendKeys(Keys.Enter);
 }
Ejemplo n.º 2
0
 public void SetValue(string value)
 {
     BrowserFramework.FindWebElement(this).SendKeys(value);
 }
Ejemplo n.º 3
0
 public string GetVlue()
 {
     return(BrowserFramework.FindWebElement(this).GetAttribute("value"));
 }
Ejemplo n.º 4
0
 public void Click()
 {
     BrowserFramework.FindWebElement(this).Click();
 }