使用selenium Python滚动列表直到结束

时间:2018-03-14 15:20:24

标签: python facebook selenium web-scraping scrollview

我试图通过python使用list = driver.find_elements_by_xpath('xpath') hover = ActionChains(driver).move_to_element(list) hover.perform() 滚动浏览我的facebook好友列表/聊天列表,但它只滚动网页而不是该列表。

我试过这样的事情:

{
    "value1": 1.4
}

但什么都没发生!

任何人都可以分享如何做到这一点。

1 个答案:

答案 0 :(得分:0)

使用for循环。

说:

for element in list:
    hover = ActionChains(driver).move_to_element(element)

    hover.perform()