使用Selenium Python API绑定从Chrome中获取console.log输出

5 浏览
0 Comments

使用Selenium Python API绑定从Chrome中获取console.log输出

我正在使用Selenium通过Python API绑定在Chrome中运行测试,但我在如何配置Chrome以使加载的测试的console.log输出可用方面遇到了问题。我看到WebDriver对象上有get_log()log_types()方法,并且我看到了Get chrome's console log中展示了如何在Java中实现这些操作的方法。但是我在Python API中没有找到Java中LoggingPreferences类型的等效物。有没有办法实现我所需的功能?

0