作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Selenium 的新手,并且卡在“Div”、“UL”、“LI”、“class”中的项目选择上 ^^”
这是我的功能:
public void CliquerWarboss() {
find(By.xpath("//section[@id='mainContent']//a[text()='Megaboss']")).click();
}
我尝试通过 cssSelector
和 id
选择它,但似乎都不起作用。
这是问题消息:
11:26:37.451 [main] DEBUG n.t.c.steps.ConsoleLoggingListener - RELATED ISSUES:
11:26:37.694 [main] ERROR n.t.c.steps.ConsoleLoggingListener - TEST FAILED AT STEP Cliquer warboss
11:26:37.695 [main] ERROR n.t.c.steps.ConsoleLoggingListener - element click intercepted: Element <a class="test-title-link-prod3140156 product-item__name" data-gtm-productfieldobject="{"quantity":1,"price":"34.00","name":"Ironjawz Orruk ...","id":"99070209003","position":5,"category":"GW: Age of Sigmar"}" data-gtm-actionfieldobject="{"list":"ResultsList | searchResults - Grand Alliance Destruction - Ironjawz"}" href="/fr-FR/Ironjawz-Orruk-Megaboss">Megaboss</a> is not clickable at point (844, 640). Other element would receive the click: <img class="test-img-prod3140157" alt="Warchanter" src="https://www.games-workshop.com/resources/catalog/product/600x620/99070209004_Warchanter01.jpg">
11:26:37.717 [main] DEBUG n.t.core.reports.ReportService - Reporting formats: [JSON, HTML]
如果有人可以帮助我了解发生了什么? :/
谢谢
最佳答案
要确保可以单击这些元素,请使用WebDriverWait
。
WebDriverWait waitElmt = new WebDriverWait(driver, 60);
WebElement element = waitElmt.until(ExpectedConditions.elementToBeClickable(By.xpath("//section[@id='mainContent']//a[text()='Megaboss']")));
element.click();
关于java - Selenium 选择和项目在 A "Div",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57355712/
我是一名优秀的程序员,十分优秀!