實現需求:指令碼執行時如果有失敗的case,把對應日誌寫入1.本地log檔案 2.控制台
1.logger00.py檔案定義:
import logging
import os
import time
class logger(object):
def __init__(self, logger="root"): # logger的類名,預設為root
# 建立logger並設定日誌等級
# 日誌記錄的工作主要由logger物件來完成。在呼叫getlogger時要提供logger的名稱
self.logger = logging.getlogger(logger)
self.logger.setlevel(logging.debug) # debug以及以上等級寫入日誌
"""# 設定儲存本地得日誌檔名
# os.getcwd()獲得專案所在的當前目錄
# os.path.dirname(path):去掉檔名返回目錄,os,path.dirname(__file__):當前檔案的絕對路徑
"""log_path = os.path.dirname(os.getcwd()) + '\log\ '
rq = time.strftime('%y%m%d%h%m', time.localtime(time.time()))
log_name = log_path + rq + '.log'
print(log_name)
# 設定日誌的輸出格式
fomatter = logging.formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
# 建立輸出到本地檔案得handle,filehandler
fh = logging.filehandler(log_name, 'a') # 日誌寫入式追加模式
fh.setlevel(logging.info) # 只有warning級別得會寫入到日誌中
fh.setformatter(fomatter) # 定義寫入到本地檔案得日誌格式
self.logger.addhandler(fh)
# 建立用於輸出到控制台得streamhandler
ch = logging.streamhandler()
ch.setlevel(logging.info)
ch.setformatter(fomatter)
self.logger.addhandler(ch)
def getlog(self):
return self.logger
2.呼叫
from logger00 import logger
logger = logger("mylogger").getlog()
logger.info("前進瀏覽器")
3.日誌輸出格式
Python Selenium環境搭建
安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...
Python Selenium 學習筆記
1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...
Python Selenium錯誤小結
因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...