3

长话短说:从 Selenium 切换到 Requests(-html)。

工作正常,但并非在所有情况下。

页面:https ://www.winamax.fr/paris-sportifs/sports/1/1/1

加载后,它会通过英语比赛(例如:谢菲尔德联队 - 西汉姆联队)对动态内容进行收费。

但是当我尝试这样做时:

from requests_html import HTMLSession
session = HTMLSession()
r = session.get('https://www.winamax.fr/paris-sportifs/1/1/1')
r.html.render()
print(r.html.text) # I also tried print(r.html.html)

游戏不显示在输出中。

为什么 ?谢谢 !

4

1 回答 1

1

添加超时,它应该工作,对不起,这必须是评论,但我不能评论..

from requests_html import HTMLSession
session = HTMLSession()
r = session.get('https://www.winamax.fr/paris-sportifs/sports/1/1/1')
r.html.render(timeout=20)
print(r.html.html)
session.close()
于 2020-08-07T17:20:26.763 回答