标签: python python-2.7 selenium selenium-webdriver selenium-chromedriver
在我的页面上,如果还有更多的向下滚动条,如何找到要向下滚动的滚动条。
我的意思是,我想从中间向下滚动条,从右侧向下滚动条是浏览器栏。
如下面的照片所示,我想用黄色箭头移动一个。
答案 0 :(得分:0)
我找到了解决方案,并将其发布了,也许会对某人有所帮助。
element = driver.find_elements_by_class_name('paginated') driver.execute_script('arguments[0].scrollTop = arguments[0].scrollHeight', element[0])
Selenium Firefox webdrive, using Python, scrolling in div