我无法获取下拉菜单的子菜单项,因为子菜单仅在主菜单项的 mouseOver 事件中可见。
我的代码:
主菜单项上的 mouseOver 事件
IWebElement element = WebDriver.FindElement(By.Id(elementID));
Actions action = new Actions(WebDriver);
action.MoveToElement(element).Build().Perform();
当我尝试获取菜单的子菜单项时,出现以下错误:“ ... OpenQA.Selenium.ElementNotVisibleException:无法单击元素”。
你建议我怎么做?