예제 #1
0
 public static void DoubleClick(this IWebElement webElement)
 {
     webElement.Action((a, e) => a.DoubleClick(e));
 }
예제 #2
0
 public static void ClickRightUp(this IWebElement webElement)
 {
     webElement.Action((a, e) => a.MoveToElement(e, e.Size.Width - 1, 0).Click());
 }
예제 #3
0
 public static void Mouseover(this IWebElement webElement)
 {
     webElement.Action((a, e) => a.MoveToElement(e));
 }
예제 #4
0
 public static void ClickLeftUp(this IWebElement webElement)
 {
     webElement.Action((a, e) => a.MoveToElement(e, 0, 0).Click());
 }