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