如何在测试前在 Firebase 测试实验室中执行 adb 命令
How to execute adb command in Firebase Test Lab prior to a test
我想在测试期间启用某些标签的日志记录。
如何执行
adb shell setprop log.tag.GAv4 DEBUG
在 Firebase 模拟器上?
目前无法在 Firebase 测试实验室进行测试之前执行任意 adb 命令。请随时提交 feature request 以表明您正在尝试做什么。
你试过executeShellCommand了吗?
Executes a shell command. This method returns a file descriptor that points to the standard output stream. The command execution is similar to running "adb shell " from a host connected to the device.
我想在测试期间启用某些标签的日志记录。
如何执行
adb shell setprop log.tag.GAv4 DEBUG
在 Firebase 模拟器上?
目前无法在 Firebase 测试实验室进行测试之前执行任意 adb 命令。请随时提交 feature request 以表明您正在尝试做什么。
你试过executeShellCommand了吗?
Executes a shell command. This method returns a file descriptor that points to the standard output stream. The command execution is similar to running "adb shell " from a host connected to the device.