UI自动化 - 查询cell.name()需要25秒

时间:2015-03-09 15:37:47

标签: ios instruments ui-automation

为什么在我的iPhone 6 Plus上完成此脚本需要4秒钟的时间:

var target = UIATarget.localTarget(); 
var app = target.frontMostApp();
var window = app.mainWindow();
var tableview = window.tableViews()[0];
cell = target.frontMostApp().mainWindow().tableViews()[0].cells()[3]; 

但是这个脚本在同一台设备上占用超过25秒:

var target = UIATarget.localTarget(); 
var app = target.frontMostApp();
var window = app.mainWindow();
var tableview = window.tableViews()[0];
cell = target.frontMostApp().mainWindow().tableViews()[0].cells()[3];
UIALogger.logMessage("Cell name: " + cell.name());

问题显然与cell.name()有关。

0 个答案:

没有答案