自動化測試~讀取yaml的測試數(shù)據(jù)
做自動化測試的時候,大多數(shù)同學會存放在Excel、Yaml、數(shù)據(jù)庫中,接下來我們將編寫一個demo,用來讀取存放在yaml中的測試數(shù)據(jù)
1.下載依賴包
2. 導包
import logging:是我們封裝好的日志模塊
import yaml:導入yaml包
from base.impl.fileManageImpl import FileManageImpl:這里是我們對文件是否存在判斷的一個實現(xiàn)類(下面要講)
3.初始化
yamlPath:yaml文件路徑
self.__yamlPath:實例屬性
4.讀取yaml數(shù)據(jù)
判斷yaml路徑是否存在,若是存在讀取yaml數(shù)據(jù)
若是不存在返回空字典
5.完整代碼
6.FileManageImpl代碼
FileManage:是一個抽象類,F(xiàn)ileManageImpl繼承了FileManage
os.path.exists:判斷路徑是否存在
os.path.isdir(path):判斷是否為目錄
7.FileManage代碼
標簽: