我们正在通过python selenium与chromedriver合作。
所以我理解如何通过this post获取控制台日志,但我所感兴趣的是在控制台日志中获取该函数的输出
driver.get_log('browser')
输出
{'level': 'INFO',
'message': 'https://public.website.com/stuff/stuff.js?v=numbers "function = "',
'source': 'console-api',
'timestamp': blah
},
在chrome的开发人员控制台中,实时评估函数,并在控制台中以json格式输出结果。如何记录这些结果?
编辑:到目前为止没有运气。我希望能够以任何格式返回评估的js。