0

我正在使用 Selenium WebDriver 进行沃尔玛自动化。我编写了一个函数来将鼠标悬停在部门菜单“家庭、家具和露台”上,以便突出显示它,然后我可以单击“电器”链接。这是我编写的函数,但它似乎没有悬停在元素上。

    public void NavigateDepartments(){
        WebElement ApplianceLink = driver.findElement(By.xpath("//*[div='Home, Furniture & Patio']"));
    Actions myMouse = new Actions(driver);
        myMouse.moveToElement(ApplianceLink).build().perform();
    ApplianceLink.click();

}

我还尝试为 Xpath("/html/body/div/div/div[3]/div/div/div/ul/li[3]/div/div") 提供绝对路径来查找元素,但它没有工作。我错过了什么吗?

4

1 回答 1

2

您应该首先将鼠标悬停在主菜单上,然后移动到新元素

WebElement menu = driver.findElement(By.xpath("//path to *appliance*"));
WebElement parentMenu = driver.findElement(By.xpath("//*[div='Home, Furniture & Patio']"));
Actions builder = new Actions(driver);
builder.moveToElement(parentMenu).moveToElement(menu).click().build().perform();
于 2013-03-06T09:26:23.397 回答