我的项目中有Image DropDown
ListBox。如果我将鼠标移到菜单上,我会得到3个选项。我需要从列出的菜单中选择一个选项。我是Selenium网络驱动程序的新手。请帮忙解决这个问题。我在IE
以及FireFox
中尝试过此选择。
只有鼠标移动才能在菜单上运行。即使我点击也没有发生任何事情(我的意思是我无法看到Dropdown
列表)。
答案 0 :(得分:1)
感谢您的回复。我使用下面的代码修复了。
WebElement e1 = driver.findElement(By.linkText("Admin"));
WebElement e2 = driver.findElement(By.xpath(("Element1_xpath"));
WebElement e3 = driver.findElement(By.xpath("Element2_xpath"));
Actions action = new Actions(driver);
action.moveToElement(e1).clickAndHold().build().perform();
action.moveToElement(e2).clickAndHold().build().perform();
action.moveToElement(e3).click().build().perform();
Thread.sleep(2000);
答案 1 :(得分:0)
尝试使用driver.Mouse API函数。 Fyi:这里的驱动程序是你的驱动程序的实例。