我是selenium webdriver的新手,我正在努力在网页上找到一个按钮,因为它的ID不断变化,并且没有其他属性可用于识别此元素。请看下面的代码。 有人可以看看这个代码,并帮助我如何识别这个按钮元素。
答案 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();
请确保此元素不在框架内..
希望它会对你有所帮助.. :)