0

如何在下面给出的菜单中将鼠标悬停在 MainMenu 上选择并单击 SubMenu2?

  • 菜单
    • 子菜单1
    • 子菜单2

我尝试使用下面给出的代码,但无法选择 submenu2。请提供线索

Actions actions = new Actions(driver);

WebElement menuHoverLink = driver.findElement(By.cssSelector("#access > ul > li > a"));
actions.moveToElement(menuHoverLink);
WebElement subLink = driver.findElement(By.cssSelector("#access > ul > li > ul > li > a"));
actions.moveToElement(subLink);
actions.click();
actions.perform();
4

2 回答 2

1

看到您的主菜单正在使用 mousehover 功能打开,对于子菜单,您只需单击所需的链接,因此您无需在子菜单链接上执行 mouseHover ..您可以执行以下操作:

动作动作=新动作(驱动程序);
WebElement menuHoverLink = driver.findElement(By.cssSelector("#access > ul > li > a"));
actions.moveToElement(menuHoverLink).build().perform();
WebElement subLink = driver.findElement(By.cssSelector("#access > ul > li > ul > li > a"));
subLink.click();

这将解决您的目的。

于 2013-09-23T11:16:09.287 回答
1

我得到了解决方案:

Actions actions = new Actions(driver);
WebElement menuHoverLink =  driver.findElement(By.cssSelector("#access  > ul > li:first-child> a"));

actions.moveToElement(menuHoverLink).build().perform();

By submenucss= By.cssSelector(("#access> ul> li:first-child > ul>  li:last-child a"));

WebDriverWait wait1 = new WebDriverWait(driver, 10);
wait1.until(ExpectedConditions.presenceOfElementLocated(submenucss));
WebElement submenu= driver.findElement(submenucss);
submenu.click();
于 2013-10-28T07:56:14.940 回答