庫介紹:
keyword
arguments
documentation
create ntlm session
alias, url, auth, headers={}, cookies=none, timeout=none, proxies=none, verify=false
建立乙個http會話:
url:即伺服器的url
alias:使用robot framework的別名表示當前會話。
header:使用預設的headers欄位
auth:ntlm鑑權需用[『domain』,』username』,』password』]格式
timeout:會話超時時長
proxies:**伺服器的url
verify:如果需要證書請求則置為true
create session
alias, url, headers={}, cookies=none, auth=none, timeout=none, proxies=none, verify=false
建立乙個http會話:
url:即伺服器的url
alias:使用robot framework的別名表示當前會話。
header:使用預設的headers欄位
auth:ntlm鑑權需用username&password格式
timeout:會話超時時長
proxies:**伺服器的url
verify:如果需要證書請求則置為true
delete
alias, uri, data=(), headers=none, allow_redirects=none
棄用,檢視delete request
delete all sessions
刪除全部的會話
delete request
alias, uri, data=(), headers=none, allow_redirects=none
使用別名刪除會話
alias:需要刪除的會話的別名
get
alias, uri, headers=none, params={}, allow_redirects=none
棄用:使用get request
get request
alias, uri, headers=none, params={}, allow_redirects=none
根據提供的別名查詢會話並在會話中傳送get請求
head
alias, uri, headers=none, allow_redirects=none
棄用:使用head request
head request
alias, uri, headers=none, allow_redirects=none
根據提供的別名查詢會話並在會話中傳送head請求
options
alias, uri, headers=none, allow_redirects=none
棄用:使用options request
options request
alias, uri, headers=none, allow_redirects=none
根據提供的別名查詢會話並在會話中傳送options請求
post
alias, uri, data={}, headers=none, files={}, allow_redirects=none
棄用:使用post request
post request
alias, uri, data={}, headers=none, files={}, allow_redirects=none
根據提供的別名查詢會話並在會話中傳送post請求
to json
content, pretty_print=false
將返回的資料轉換為json格式
RobotFramework測試Rest服務
python有乙個都對http請求封裝的很好的類庫 requests 見這裡 而rest服務就是基於http請求之上的,活躍的社群也有提供了乙個封裝 robotframework requests 見這裡 可以用來方便的測試rest服務 這裡記錄下在使用過程中碰到的問題 1.import的時候,名字...
RobotFramework 資料分離
robotframework 資料分離分為三種 1.run 新增引數 2.外部的python檔案 3.讀取excel run 新增引數 適用於jenkins 使用 v 引數名 引數值 使用外部的python檔案 使用外部的python檔案進行資料分離的話,首先建乙個python檔案,並在裡面定義乙個...
robot framework環境搭建
一 robot framework環境搭建 官網 序號安裝包名 安裝方法備註1 python exe檔案,直接雙擊安裝 一切的基礎,安裝路徑不能有空格 2setuptools python 的套件管理程式 3pip 1 cmd進入ez setup.py檔案目錄 2 用setuptools安裝 eas...