selenium--记录日志信息

网友投稿 594 2022-11-02

selenium--记录日志信息

selenium--记录日志信息

前戏

在我们进行web自动化的时候,我们希望记录下日志信息,方便我们进行定位分析,我们可以使用logging模块来进行记录

实战

先写个配置文件Logger.conf来管理日志的配置

[loggers]keys=root,example01,example02[logger_root]level=DEBUGhandlers=hand01,hand02[logger_example01]handlers=hand01,hand02qualname=example01propagate=0[logger_example02]handlers=hand01,hand03qualname=example02propagate=0#######################################[handlers]keys=hand01,hand02,hand03[handler_hand01]class=StreamHandlerlevel=DEBUGformatter=form01args=(sys.stderr,)[handler_hand02]class=FileHandlerlevel=DEBUGformatter=form01args=('d:\\AutoTestLog.log','a')[handler_hand03]class=handlers.RotatingFileHandlerlevel=INFOformatter=form01args=('d:\\AutoTestLog.log','a',10*1024*1024,5)#####################################################[formatters]keys=form01,form02[formatter_form01]format=%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)sdetefmt=%Y-%m-%d %H:%M:%S[formatter_form02]format=%(name)-12s: %(levelname)-8s %(message)sdetefmt=%Y-%m-%d %H:%M:%S

在写个Log.py文件来管理日志的级别

import logging.configlogging.config.fileConfig("Logger.conf")def debug(message): # 打印debug级别的日志方法 logging.debug(message)def warning(message): # 打印warning级别的日志方法 logging.warning(message)def info(message): # 打印info级别的日志方法

最后再我们的脚本里写日志信息

from selenium import webdriverimport unittestfrom Log import *class TestSoGouSearch(unittest.TestCase): def setUp(self): self.driver=webdriver.Chrome() def testSoGouSearch(self): info(u'=======搜索=======') url=' self.driver.get(url) info('访问sogou首页') import time time.sleep(3) self.driver.find_element_by_id('query').send_keys('自动化测试') info('在搜索框中输入自动化测试') self.driver.find_element_by_id('stb').click() info('单击搜索按钮') info('=====测试用例执行结束=====') def tearDown(self): self.driver.quit()if __name__=='__main__': unittest.main()

执行SoGou.py文件后,会在本地磁盘D盘中生成一个日志文件AutoTestLog.log

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Cosmos-SDK是用于在Golang中构建公有区块链应用的框架
下一篇:VUE CLI3适配H5应用的框架,采用px自动转vw的方式
相关文章

 发表评论

暂时没有评论,来抢沙发吧~