Webdriver:查找并单击隐藏元素,其中id不断变化

时间:2016-06-07 10:57:33

标签: java selenium dynamic webdriver elements

我是selenium webdriver的新手,我正在努力在网页上找到一个按钮,因为它的ID不断变化,并且没有其他属性可用于识别此元素。请看下面的代码。 有人可以看看这个代码,并帮助我如何识别这个按钮元素。

selenium webdriver hidden elements

1 个答案:

答案 0 :(得分:1)

您应该按xPath尝试如下: -

WebDriverWait wait = new WebDriverWait(driver, 1000);
WebElement el = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xPath("//div[contains(@class, 'header-navigation__cta-buttons-wrapper')]/a[contains(@class, 'cta-buttons__link--button-1')]")));
el.click();

请确保此元素不在框架内..

希望它会对你有所帮助.. :)