如何发送和检索 Android UIAutomator 最新版本 2.1.2 的命令行参数
How to send and retrieve Command line parameters for Android UIAutomator latest version 2.1.2
我们如何使用新的 UIAutomator 获取命令行参数?
早些时候我们将命令行参数传递给 class 中的方法,如下所示:
adb shell uiautomator runtest UiTest.jar -c package.name.ClassName -e paramKey paramValue
在代码中,我们通过 getParams() API 获取参数,因为 class 扩展了 UIAutomatorTestCase Class。此 class 现在已弃用,无法使用 getParams() 方法。
您可以使用 InstrumentationRegistry.getArguments() 检索命令行参数。
我们如何使用新的 UIAutomator 获取命令行参数? 早些时候我们将命令行参数传递给 class 中的方法,如下所示:
adb shell uiautomator runtest UiTest.jar -c package.name.ClassName -e paramKey paramValue
在代码中,我们通过 getParams() API 获取参数,因为 class 扩展了 UIAutomatorTestCase Class。此 class 现在已弃用,无法使用 getParams() 方法。
您可以使用 InstrumentationRegistry.getArguments() 检索命令行参数。