在selenium中如何调用原网页中定义的js函数

如图:图片描述

因为爬虫爬取时要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()方法执行的结果,求助各位大佬

阅读 10.1k
1 个回答
新手上路,请多包涵

需要返回,driver.execute_script("return getKey()")

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏