案例故事:有一天測試經理髮給我一個Bug列表,
這些Bug都是被開發打回來的無效(WithDrawn)Bug,
就是開發不認爲是bug, 測試經理以爲頗有必要去分析下,
爲何這麼多無效bug,究竟是什麼緣由?
測試經理想知道,是測試提Bug太隨意,仍是無此需求,仍是開發bug流轉流程不對,仍是其餘的什麼緣由?
確定是須要看具體Bug的備註,及流轉記錄的,因此確定須要批量在瀏覽器端打開Bug詳情網頁一個個去看,
那如何批量地在瀏覽器端打開Bug呢?python
記住批處理腳本的精髓:批量順序執行語句web
# coding=utf-8 import os import webbrowser import openpyxl # 定義本模塊(文件)內的經常使用變量 excel_file = "Witdrawn_Buglist.xlsx" # excel名稱 bugid_col = 1 # Bug ID 列序號 url_prefix = "https://bugreports.qt.io/browse/" # jira url 前綴 # 獲取BugID並在瀏覽器端打開 excel = openpyxl.load_workbook(excel_file) # 讀取excel裏邊的內容 sheet = excel.active rows = sheet.max_row for r in range(2, rows + 1): # excel第一行是標題,須要過濾掉 bug_id = sheet.cell(row=r, column=bugid_col).value webbrowser.open_new_tab("%s%s" % (url_prefix, bug_id)) # 在新窗口打開Jira Bug os.system("pause")
面向過程函數的編程思惟應該是這樣的:
你須要多少個功能(函數),才能作成這個事。
最好把功能(函數)都儘可能封裝好,只暴露一些的參數接口便可。
本次代碼優化:
考慮到本次bug較多,188條,若是一次性在瀏覽器端打開,則會致使瀏覽器崩潰,
或者不容易查看, 因此須要考慮在Python程序執行中,每次只打開10條bug,
而後暫停,再而後按下任意鍵可繼續顯示另外的10條bug。編程
# coding=utf-8 import os import webbrowser import openpyxl def open_url(url): '''打開指定的url''' webbrowser.open_new_tab(url) def get_bug_id(excel_file, col_num): bug_id_list = [] excel = openpyxl.load_workbook(excel_file) # 讀取excel裏邊的內容 sheet = excel.active rows = sheet.max_row for r in range(2, rows + 1): # excel第一行是標題,須要過濾掉 bug_id = sheet.cell(row=r, column=col_num).value bug_id_list.append(bug_id) return bug_id_list count = 0 bug_id_list = get_bug_id("Witdrawn_Buglist.xlsx", 1) for i in bug_id_list: open_url("https://bugreports.qt.io/browse/%s" % i) # 若是能整除10,則暫停一次 count = count + 1 if count % 10 == 0: os.system("pause") os.system("pause") # 用於防止腳本運行後直接關閉致使看不到任何執行結果
面向對象類的編程思惟應該是這樣的:
若是給你一個空白的世界,在這個世界裏你須要哪些種類的事物,
這些種類的事物都具有哪些共有的屬性與方法,
這些種類(類)的事物(對象),和其餘種類(其餘類)的事物(其餘對象)有什麼關係。
儘可能把這些類封裝好,只暴露對外的屬性(變量)和方法(函數)便可。瀏覽器
# coding=utf-8 import os import webbrowser import openpyxl def open_url(url): '''打開指定的url''' webbrowser.open_new_tab(url) class ExcelParser(object): '''解析Excel,可是隻定義一個函數獲取bugID的便可''' def __init__(self, excel_file): self.__excel = openpyxl.load_workbook(excel_file) # 讀取excel裏邊的內容, 無需被引用。 def get_bug_id(self, col_num): bug_id_list = [] sheet = self.__excel.active rows = sheet.max_row for r in range(2, rows + 1): # excel第一行是標題,須要過濾掉 bug_id = sheet.cell(row=r, column=col_num).value bug_id_list.append(bug_id) return bug_id_list if __name__ == '__main__': count = 0 e_obj = ExcelParser("Witdrawn_Buglist.xlsx") bug_id_list = e_obj.get_bug_id(1) for i in bug_id_list: open_url("https://bugreports.qt.io/browse/%s" % i) # 若是能整除10,則暫停一次 count = count + 1 if count % 10 == 0: os.system("pause") os.system("pause") # 用於防止腳本運行後直接關閉致使看不到任何執行結果
以上代碼的3種實現形式均可以直接運行,好比保存爲open_jira_bugs.py並放在桌面,
建議open_jira_bugs.py運行,固然也能夠雙擊運行。
微信
跳轉到官網下載本練手素材
武散人出品,請放心下載!
app
小提示:WithDrawn 的意思其實和Invalid, Rejected是相似的,表示被開發懟回來的,開發拒絕,不接受這類bug的意思,每一個公司的Jira系統所設置的Bug狀態稍有不一樣。函數
更多更好的原創文章,請訪問官方網站:www.zipython.com
自拍教程(自動化測試Python教程,武散人編著)
原文連接:https://www.zipython.com/#/detail?id=071a1e459b6f4174b2b03cf3820e28a2
也可關注「武散人」微信訂閱號,隨時接受文章推送。
測試