uiautomator runtest命令列向jar檔案傳參
命令列如下:
adb shell uiautomator runtest Test.jar -e runtype repeat -c com.yuchaolee.lau.MyTest.MTest
裡面有個引數e,後跟的runtype和repeat分別是值的key和value。
程式碼段:
?1 2 3 4 5 |
public
void
testLau()
throws
Exception {
Bundle bundle = getParams();
String runType = bundle.getString(
"runtype"
);
System.out.println(runType);
}
同時我們這裡會涉及到幾個重要的類,我們這裡先列出來給大家有一個初步的印象:
|