2

如何在 iOS 自动化脚本中搜索字符串中的子字符串?indexOf() 和 search() 方法不起作用。

4

1 回答 1

3
var text = target.frontMostApp().navigationBar().staticTexts()[0].value();
var index = text.indexOf("text that looking for");
UIALogger.logDebug("index is: " + i); // -1 means not found

它已经过测试。

于 2013-09-13T07:10:48.527 回答