Selenium关于滚动条的定位方法总结

说明:滚动条也分为很多种。需根据具体情况来决定使用哪种方法。

一、最普通滚动条,手动拖动可以到页面任意位置 。 

  1. 滚动到指定元素的位置;

    WebElement target = driver.findElement(By.xpath(xPathExpression));((JavascriptExecutor)driver).executeScript(“arguments[0].scrollIntoView();”, target); 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/195089.html

(0)
上一篇 2021年11月16日
下一篇 2021年11月16日

相关推荐

发表回复

登录后才能评论