Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 selenium webdriver 和 firefox 浏览器在 div 元素中获取滚动条?我需要验证案例:当表格(位于 div 内的表格)超过 10 行时,将出现滚动条。
我想如果开发者是在HTML属性中发布滚动条属性,那么你就可以捕捉到,否则你将不得不与开发者讨论。之后,您可以使用 webdriver 方法获取行数
driver.findElements(By.xpath("XPATH expression")).size();
并使用 if 条件您可以验证滚动条。
谢谢