如何使用python保存使用selenium生成的日志

前端之家收集整理的这篇文章主要介绍了如何使用python保存使用selenium生成的日志前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用网络驱动程序2.20并创建了自动化套装.不像
selenium RC(get_log函数)我无法弄清楚要保存的命令
生成的日志.
我试过了 :
FirefoxProfile p = new FirefoxProfile();   
p.setPreference("webdriver.log .file","/tmp/firefox_console"); 
WebDriver driver = new FirefoxDriver(p);

但是找不到python的等价物.
还有http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/sel ……
这也是在java中.另外我看到“导入日志记录”功能不知道
如何使用它将日志保存在文件中.
有什么建议 ?

解决方法

以下内容将为您做同样的事情. python代码没有内部日志.
from selenium import webdriver

p = webdriver.FirefoxProfile()   
p.set_preference("webdriver.log.file","/tmp/firefox_console")
driver = webdriver.Firefox(p)
原文链接:/python/185814.html

猜你在找的Python相关文章