selenium 自动化滑动条的操作

code

b= ActionChains(driver)

c= driver.find_element_by_xpath("元素名")

b.click_and_hold(c).perform()

for i in range(100):
    try:
          b.move_by_offset(15,0).perform()
    except Exception:
          break #此处可以根据需求来跳出循环
    b.reset_actions()

 

 

 

 

 

 

 

posted @ 2020-08-17 16:52  anobscureretreat  阅读(331)  评论(0编辑  收藏  举报