求python高手帮忙爬取一下这个页面
from selenium import webdriverurl = 'http://page.乡村振兴&flag=1&ispc=1'
driver = webdriver.PhantomJS(executable_path=r'D:\tool\phantomjs-2.1.1-windows\bin\phantomjs.exe')
driver.get(url)
wbdata = driver.page_source
print(wbdata)
使用selenium + PhantomJS 执行上面的代码,无法获取动态的数据,返回的数据中出现 “正在加载数据,请稍候......”请高人指点一下,如何才能下载完整的页面数据。
[此贴子已经被作者于2019-10-5 16:57编辑过]