Я понял, что эта функция не работает с текущими версиями Geckodriver и / или Selenium Wedriver.
public static void MouseOver(IWebDriver driver, string xpath)
{
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
var element = wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementIsVisible(By.XPath(xpath)));
Actions action = new Actions(driver);
action.MoveToElement(element).Perform();
System.Threading.Thread.Sleep(1500); //Waiting for the menu to be displayed
}
У кого-нибудь есть идеи для обхода?