示例#1
0
        public static Actions MoveToElement(this WebApplication webApplication, By locator, int offsetX, int offsetY)
        {
            var element = webApplication.FindElement(locator);

            return(webApplication.Actions().MoveToElement(element, offsetX, offsetY));
        }
示例#2
0
 public static Actions MoveToElement(this WebApplication webApplication, IWebElement element, int offsetX, int offsetY)
 {
     return(webApplication.Actions().MoveToElement(element, offsetX, offsetY));
 }
示例#3
0
 public static Actions MoveToElement(this WebApplication webApplication, IWebElement element)
 {
     return(webApplication.Actions().MoveToElement(element));
 }