예제 #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));
 }