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