Ejemplo n.º 1
0
        public string CheckElement()
        {
            var res = TestFramework.FindWebElement(this).Text;


            return(res);
        }
Ejemplo n.º 2
0
        public void SelectValue(string value)
        {
            var           el             = TestFramework.FindWebElement(this);
            SelectElement SelectDropdown = new SelectElement(el);

            SelectDropdown.SelectByText(value);
        }
Ejemplo n.º 3
0
 public void SetValue(string value)
 {
     TestFramework.FindWebElement(this).SendKeys(value);
 }
Ejemplo n.º 4
0
 public void Click()
 {
     TestFramework.FindWebElement(this).Click();
 }