我正在使用Actions类移动到元素但我无法单击下拉列表中的元素

问题描述 投票:1回答:1
public static void main() throws InterruptedException {
        Thread.sleep(5000);
        Actions a = new Actions(driver);
        WebElement as = driver.findElement(By.xpath(".//*[@id='yourAccount']"));
        a.moveToElement(as).build().perform();
        WebElement login = driver.findElement(By.xpath("//ul[@class='hFlyout guest gnf_nav_depth2_list']//li[12]//button"));
        System.out.println(login.isDisplayed());
        login.click();
        Thread.sleep(5000);
        driver.switchTo().frame(1);
        System.out.println("pass");
        driver.findElement(By.linkText("Join for free")).click();
        Thread.sleep(5000);
}

网站:http://www.sears.com/鼠标悬停元素:登录账户和积分下拉元素:“免费加入”我正在使用Firefox浏览器

提前致谢

java selenium-webdriver action
1个回答
1
投票

你不应该使用Thread.sleep(),因为这是一个不好的做法。请改用WebDriverWait

从您的代码中看,您的悬停看起来是正确的,但您需要等待一段时间以确保面板打开并且“免费加入”按钮是可见且可点击的。 WebDriverWait很容易解决这个问题......你只需等待按钮可点击,然后点击它。

driver.get("https://www.sears.com/");
Actions hover = new Actions(driver);
hover.moveToElement(driver.findElement(By.id("yourAccount"))).build().perform();
new WebDriverWait(driver, 3).until(ExpectedConditions.elementToBeClickable(By.cssSelector("button[data-action='join']"))).click();

这段代码适合我。

© www.soinside.com 2019 - 2024. All rights reserved.