如何在iOS自动化脚本 中搜索字符串中的 子字符串? indexOf()和search()方法无效。
答案 0 :(得分: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
已经过测试。