OStack程序员社区-中国程序员成长平台

标题: ios - 如何消除 performTaskWithPathArgumentsTimeout 的 1 秒延迟 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 20:19
标题: ios - 如何消除 performTaskWithPathArgumentsTimeout 的 1 秒延迟

我在我的 ios ui 脚本中使用 performTaskWithPathArgumentsTimeout,在执行命令之前似乎引入了隐藏的 1 秒延迟。

var target = UIATarget.localTarget();
var host = target.host();

var start = new Date().getTime();
var result = host.performTaskWithPathArgumentsTimeout("/bin/echo", ["Hello World"], 5);
var total = new Date().getTime() - start;

UIALogger.logDebug("duration: " + total);

输出: 持续时间:1001

所有命令都一样。从命令行启动时即时,但通过 performTask 启动时会有 1 秒的延迟。

关于如何减少这种延迟的任何想法?



Best Answer-推荐答案


此延迟与 UI 自动化在内部启动命令的方式有关。从头到尾我们无能为力。

也就是说,如果您有很多命令要按顺序执行,您可以将它们全部放在一个 shell 脚本中并像这样执行它:

host.performTaskWithPathArgumentsTimeout("/bin/bash", ["some_shell_script.sh"], 5);

这将在 bash 中运行给定的 shell 脚本文件,您只需支付 1 秒的进程启动惩罚一次。

关于ios - 如何消除 performTaskWithPathArgumentsTimeout 的 1 秒延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10138407/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4