예제 #1
0
 /// <summary>
 /// Click a Web Element. If the element is null, disabled or not visible an exception will be thrown
 /// </summary>
 /// <param name="e">The element to click</param>
 public void Click(IWebElement e)
 {
     e.ValidateState();
     e.Click();
     this.WaitforPage();
 }