从 iOS 仪器脚本调用 Javascript

发布于 2024-12-28 23:05:28 字数 211 浏览 1 评论 0原文

我有一个适用于 iOS 的仪器 UI 自动化脚本,(在 javascript 中)

我想从此仪器 javascript 调用 .NET Web 服务。

对此有什么想法吗?

PS:我已经尝试了所有其他方法(如phonegap、XUI 等),但没有结果。

这些工作在普通的 javascript 上,而不是 ios 工具 Javascript 上

I have a instruments UI automation script for iOS,(in javascript)

I would like to call a .NET web service from this instruments javascript.

Any ideas on this ?

PS: I have tried all other methods (like phonegap, XUI etc etc) without results.

Those work on normal javascript not the ioS instruments Javascript

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笔一画续写前缘 2025-01-04 23:05:28

只需使用 UIAHostperformTaskWithPathArgumentsTimeout 方法在 js 脚本中调用命令(例如 curl/wget)即可。

var target = UIATarget.localTarget();
var host = target.host();
var result = host.performTaskWithPathArgumentsTimeout("/bin/echo", ["Hello host"], 5); // Updated to pass arguments as array

UIALogger.logDebug("exitCode: " + result.exitCode);
UIALogger.logDebug("stdout: " + result.stdout);
UIALogger.logDebug("stderr: " + result.stderr);

请参阅:http://developer.apple。 com/library/ios/#documentation/UIAutomation/Reference/UIAHostClassReference/UIAHost/UIAHost.html

Simply call a command (curl/wget for example) in your js script with the method performTaskWithPathArgumentsTimeout of UIAHost.

var target = UIATarget.localTarget();
var host = target.host();
var result = host.performTaskWithPathArgumentsTimeout("/bin/echo", ["Hello host"], 5); // Updated to pass arguments as array

UIALogger.logDebug("exitCode: " + result.exitCode);
UIALogger.logDebug("stdout: " + result.stdout);
UIALogger.logDebug("stderr: " + result.stderr);

See : http://developer.apple.com/library/ios/#documentation/UIAutomation/Reference/UIAHostClassReference/UIAHost/UIAHost.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文