溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

robot用例執(zhí)行常用命令

發(fā)布時(shí)間:2020-07-29 16:18:24 來(lái)源:網(wǎng)絡(luò) 閱讀:15592 作者:襖淋披殼_sh 欄目:軟件技術(shù)

執(zhí)行命令

執(zhí)行一個(gè)用例

robot -t “testcase_name“ data_test.robot

按用例文件執(zhí)行

robot data_test.robot
或者 robot --suite “prjxx.robot.data test" test_directory

執(zhí)行目錄下所有用例

robot test_directory
或者python -m robot test_directory

按執(zhí)行tag執(zhí)行用例

robot --include smoke test_directory
robot --include smoke path/test_file.robot

剔除用例執(zhí)行

robot --exclude smoke test_directory
或者
robot --exclude smoke path/test_file.robot

亂序跑

可以有效避免testcase之間的依賴,保持獨(dú)立性是testcase持續(xù)有效的關(guān)鍵
robot --randomize tests path/test_file.robot

變量參數(shù)

可以更新多個(gè)變量,達(dá)到每次跑不一樣內(nèi)容的目的,例如可以通過(guò)命令切換環(huán)境,切換數(shù)據(jù)等
robot --variable ENV:uat --variable TEST_DATA:uat regression.robot

結(jié)果報(bào)告

生成執(zhí)行報(bào)告

默認(rèn)生成到當(dāng)前目錄,會(huì)包含output.xml、log.html、report.html
可以對(duì)其分別修改,參數(shù)如下:
--outputdir (-d)
--output output.xml
--report report.html
--log log.html

不想要某個(gè)報(bào)告可以設(shè)置None,例如:

--output NONE --report NONE --log NONE

結(jié)果定位

不同的執(zhí)行結(jié)果會(huì)有不同的結(jié)果代碼(RC),用于快速定位問(wèn)題

RC  Explanation
0   全部通過(guò)
1-249   出現(xiàn)250個(gè)內(nèi)的錯(cuò)誤用例
250 出現(xiàn)250個(gè)內(nèi)的錯(cuò)誤用例
251 幫助信息打印
252 異常測(cè)試數(shù)據(jù)
253 用戶中斷了執(zhí)行
255 無(wú)法識(shí)別的異常

合并結(jié)果文件

rebot -N new_report.html -o new_output.xml 1st_output.xml 2nd_output.xml

合并目錄下所有的結(jié)果

python -m robot.rebot --name Combined outputs/*.xml

抽取整合測(cè)試結(jié)果

rebot --log smoke_log.html --report smoke_report.html --include smoke
--ReportTitle Smoke_Tests --ReportBackground green:yellow:red
--TagStatCombine tag1ANDtag2 path/to/myoutput.xml

資料生成

輸出當(dāng)前框架的lib庫(kù)說(shuō)明文檔

python -m robot.libdoc OperatingSystem OperatingSystem.html

生成用例文檔

python -m robot.testdoc xxx_prj1.robot/*.robot testcasedoc.html

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI