UIAutomation: 通過命令行運(yùn)行測(cè)試用例
為了實(shí)現(xiàn)自動(dòng)定時(shí)的運(yùn)行腳本,我們需要在命令行運(yùn)行和啟動(dòng)腳本,具體代碼如下:
instruments -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate <full_path_to_application> -e UIASCRIPT <path_to_script.js> -e UIARESULTSPATH <output_results_path> |
1. -t 后面的參數(shù)為 Automation.tracetemplate 的路徑,每個(gè)版本的位置都有所不同,在命令行下使用 instruments -s 命令進(jìn)行查詢。
2. full_path_to_application 是你的的被測(cè)應(yīng)用的完整目錄,需要在前后加上雙引號(hào)。
3. -e UIASCRIPT 指定執(zhí)行的 js 腳本存放的位置,需要在前后加上雙引號(hào)。
4. -e UIARESULTPATH 指定輸出結(jié)果存放的路徑,需要在前后加上雙引號(hào)。
5. 如果需要在真機(jī)運(yùn)行,在-t 參數(shù)前加上 -w UDID, 其中UDID為被連接手機(jī)的設(shè)備標(biāo)識(shí)(可通過iTools查看)。
舉例在我本地模擬器上的腳本如下:
instruments -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate "/Users/wangxinxin/Library/Developer/Xcode/DerivedData/TestAutomation-ahmqgmqipyidexemazbprqxqkrya/Build/Products/Debug-iphonesimulator/TestAutomation.app" -e UIASCRIPT "/Users/wangxinxin/Documents/TestAutomation/test.js" -e UIARESULTSPATH "/Users/wangxinxin/Documents/TestAutomation" |
UIAutomation: 登錄界面測(cè)試實(shí)例
posted on 2014-05-16 11:02 順其自然EVO 閱讀(259) 評(píng)論(0) 編輯 收藏 所屬分類: selenium and watir webdrivers 自動(dòng)化測(cè)試學(xué)習(xí)