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

时间:2017-04-20 01:42:49

标签: java selenium-webdriver action

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浏览器

提前致谢

1 个答案:

答案 0 :(得分: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();

此代码适用于我。