예제 #1
0
 /// <summary>
 /// Moves the mouse over the element.
 /// </summary>
 /// <param name="Element">the target element</param>
 public void MouseOver(IWebElement element)
 {
     WaitsHandler.WaitForElementToBeSelected(BaseDriver, element, "", "");
     try
     {
         new Actions(BaseDriver).MoveToElement(element).Perform();
     }
     catch (Exception e)
     {
         LogHandler.Error("MouseOver::NoSuchElementException - " + e.Message);
         throw new NoSuchElementException("MouseOver::" + e.Message);
     }
 }