我使用这样的硒代码:
WebElement button = driver.findElement(By.xpath("main_menu"));
Actions builder = new Actions(driver);
Action action = builder.moveToElement(button).build();
action .perform();
new Actions(driver).moveToElement(driver.findElement(By.xpath(sub_menu))).click().perform();
我有最新版本的 selenium 并且需要使用 IE,我在 FireFox 中尝试了这段代码,它可以工作。但是在 IE 中它没有点击 sub_menu 元素,它点击了 main_menu 下的一些空间(目前它是 main_menu 的第二项)。
如何在 IE 中单击 sub_menu 项?