Uiautomator向jar包传多个参数

本文介绍如何使用Uiautomator向jar包传递多个参数,包括字符串和长整型等不同类型,并提供命令示例及代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

转:http://www.th7.cn/Program/java/201512/740518.shtml


Uiautomator向jar包传多个参数,有需要的朋友可以参考下。
先看uiautomator的命令解析,随便输了个uiautomator -help,让其显示用法,打印出来的信息如下:
——————————————————————————————————————————————————————————————

shell@V4:/ $ uiautomator -help

uiautomator -help
Usage: uiautomator <subcommand> [options]


Available subcommands:
help: displays help message

runtest: executes UI automation tests
runtest <class spec> [options]
<class spec>: <JARS> < -c <CLASSES> | -e class <CLASSES> >
<JARS>: a list of jar files containing test classes and dependencies. If
the path is relative, it's assumed to be under /data/local/tmp. Use
absolute path if the file is elsewhere. Multiple files can be
specified, separated by space.
<CLASSES>: a list of test class names to run, separated by comma. To
a single method, use TestClass#testMethod format. The -e or -c option
may be repeated. This option is not required and if not provided then
all the tests in provided jars will be run automatically.
options:
--nohup: trap SIG_HUP, so test won't terminate even if parent process
is terminated, e.g. USB is disconnected.
-e debug [true|false]: wait for debugger to connect before starting.
-e runner [CLASS]: use specified test runner class instead. If
unspecified, framework default runner will be used.
-e <NAME> <VALUE>: other name-value pairs to be passed to test classes.
May be repeated.
-e outputFormat simple | -s: enabled less verbose JUnit style output.

dump: creates an XML dump of current UI hierarchy
dump [--verbose][file]
[--compressed]: dumps compressed layout information.
[file]: the location where the dumped XML should be stored, default is
/storage/emulated/legacy/window_dump.xml

events: prints out accessibility events until terminated

————————————————————————————————————————————————————————————————————

假设我需要想jar包穿三个参数,String uiserName,String password,long runTime,则对应的命令应该如下:

uiautomator runtest TestLogin.jar -e userName CrystalChen -e runTime 1000000 -e password 123 --nohup -c com.example.TestLogin

下划线斜体部分则为对应的参数配置。

在你的UiautomatorTestCase中对应接受参数的地方应该书写如下:


public void test1() throws Exception {
    Bundle bundle = getParams(); //获取键值对
    String userName=bundle.getString("userName");
    String password=bundle.getString("password");
    long runTime=Long.parseLong(bundle.getString("runTime"));
    System.out.println(runTime+"======="+password+"========"+userName);
}
    

注意:非String类型的参数不能通过bundle.getLong这种方法获取,这样是获取不到的,这些键值对必须通过getString来获取,然后对应转化成你要的类型。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值