How can I scroll a web page using selenium webdriver in python?

前端 未结 18 1649
孤街浪徒
孤街浪徒 2020-11-22 07:04

I am currently using selenium webdriver to parse through facebook user friends page and extract all ids from the AJAX script. But I need to scroll down to get all the friend

18条回答
  •  北海茫月
    2020-11-22 07:48

    driver.execute_script("document.getElementById('your ID Element').scrollIntoView();")
    

    it's working for my case.

提交回复
热议问题