如图:
因为爬虫爬取时要post的参数中有一个参数是通过这个js函数:getKey()来得到的,所以在使用selenium+chrome进行爬虫的时候想如何才能执行这个js函数得到这个字符串,代码如下:
driver = webdriver.Chrome()
driver.get("http://wenshu.court.gov.cn/list/list/?sorttype=1&number=N84T5JCC&guid=92cd33c7-fdcc-13a7f2dc-9bdea7aeeee8&conditions=searchWord+QWJS+++%E5%85%A8%E6%96%87%E6%A3%80%E7%B4%A2:%E5%9B%9B%E5%B7%9D")
driver.execute_script("window.scrollTo(0,document.body.scrollHeight)")
time.sleep(10)
str = driver.execute_script("getKey()")
data = driver.page_source
print(str)
print(data)
driver.quit
这样并不能得到getKey()方法执行的结果,求助各位大佬
需要返回,driver.execute_script("return getKey()")