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