您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python怎么實現禪道提交bug”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python怎么實現禪道提交bug”吧!
代碼如下:
import requests
loginhost="http://zen.beta.cn/index.php?m=user&f=login" #登錄url
add_bughost="http://zen.beta.cn/index.php?m=bug&f=create&productID=10&branch=0&extra=moduleID=0" #new bug url
def add_bug():
header={'Content-Type': "application/x-www-form-urlencoded; charset=utf-8"}#設置請求頭
datas={"account":"$admin","password":"123456"} #定義請求的數據
s=requests.session() #實例化一個session對象
response=s.post(loginhost,headers=header,data=datas)#使用session發起請求
print(response.content)
data = {
"product": "10", # int 所屬產品 * 必填
"openedBuild": "master", # int | trunk 影響版本 * 必填
"branch": "2", # int 分支 / 平臺
"module": "434", # int 所屬模塊
"project": "84", # int 所屬項目
"assignedTo": "baoyi", # string 指派給
"deadline": "2020-07-28", # date 截止日期 日期格式:YY - mm - dd,如:2019 - 01 - 01
"type": "codeerror", #bug類型
"bugPhase": "live",#bug在什么環境發現
"severity": "3", # int 嚴重程度 取值范圍:1 | 2 | 3 | 4
"pri": "3", # int 優先級 取值范圍:0 | 1 | 2 | 3 | 4
"keywords": "", # string 關鍵詞
"title": "feedback", #標題
"story":1143, #需求
"steps": "set bug link in here" # string 重現步驟
}
responses=s.post(add_bughost,headers=header,data=data)
print(responses.content.decode("utf-8"))
if __name__ == '__main__':
add_bug()
簡單說明下,requests庫的session會話對象可以跨請求保持某些參數,換句話說,就是比如你使用session成功的登錄了某個網站,則在再次使用該session對象請求該網站的其他網頁都會默認使用該session之前使用的cookie等參數。
運行代碼后效果如下:
感謝各位的閱讀,以上就是“Python怎么實現禪道提交bug”的內容了,經過本文的學習后,相信大家對Python怎么實現禪道提交bug這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。