gpt4 book ai didi

Python Mechanize : Page not loading fully

转载 作者:行者123 更新时间:2023-12-04 16:19:34 25 4
gpt4 key购买 nike

我正在使用的代码片段::

br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]

response = br.open('http://www.facebook.com')
br.select_form(nr=0)
br['email'] = USERNAME
br['pass'] = PASSWORD
response2 = br.submit()

assert br.viewing_html()
time.sleep(50)


for form in br.forms():
print form

好吧,我尝试将 response2.read() 写入文件以查看发生了什么。只有顶部导航栏已加载。使用 time.sleep(50) 的目的是为页面加载提供时间,但猜测这不起作用。

这样做的正确方法是什么?

最佳答案

你确定你通过了正确的登录?

我已经用我的登录名运行了你的代码,它对我来说很好。

我唯一要补充的是你不需要 time.sleep(50)在那里 - Mechanize 块,直到它收到所有内容。

通过向我们提供完整的代码示例和输出(包括 print response2 ),让您的问题更有用。

关于Python Mechanize : Page not loading fully,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6565013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com