Exemple #1
0
 public static void OpenHomePage()
 {
     BrowserFramework.OpenURL("http://2gis.ru/countries/global/");
 }
Exemple #2
0
 public void PressKeyEnter()
 {
     BrowserFramework.FindWebElement(this).SendKeys(Keys.Enter);
 }
Exemple #3
0
 public void SetValue(string value)
 {
     BrowserFramework.FindWebElement(this).SendKeys(value);
 }
Exemple #4
0
 public string GetVlue()
 {
     return(BrowserFramework.FindWebElement(this).GetAttribute("value"));
 }
Exemple #5
0
 public void Click()
 {
     BrowserFramework.FindWebElement(this).Click();
 }