网页搜罗Linkedin分页不适用于搜索

时间:2019-03-03 15:48:57

标签: python-3.x selenium selenium-chromedriver

尝试以下操作时,我无法让Linkedin进行分页:

搜索网址:https://www.linkedin.com/search/results/people/?keywords=Business%20Development&origin=SWITCH_SEARCH_VERTICAL

然后我可以转到第一面,向下滚动(无限滚动),单击“下一步”,效果很好,但是在第2页上却没有滚动。我已经意识到,通过添加“&page = 2”不会更新url,因此不会更新用于滚动的变量。我找到了另一种方法来完成此任务-我只是想知道我哪里出了问题,有没有专业人士可以解决此脚本?

geocoder.reverseGeocodeLocation(location, completionHandler: { location, error in
    if let location = location {
         self.city = location[0].locality
         db.collection("posts").document().setData( .... )
    }
})

1 个答案:

答案 0 :(得分:0)

尝试这样:

driver.execute_script("$('.artdeco-pagination__button--next').click()")

您不需要滚动。