python selenium WebDriver“显示更多评论” facebook按钮不起作用

时间:2019-01-09 11:36:22

标签: python selenium-webdriver web-scraping

我正在抓取Facebook页面,并尝试提取所有帖子和评论。 我的问题是我只收到每个帖子的2条第一条评论。 “显示更多评论”上的click()无法正常工作。 comment.click()什么也不做,不会打开当前帖子的其他评论。 有什么主意吗?

下面是我的代码。

   commemts = driver.find_elements_by_class_name('UFIPagerLink')
   for commemt in commemts:
       try:
           commemt.click()
       except Exception as e:
           pass

谢谢!

0 个答案:

没有答案