我是UIAutomation的新手,我試圖在UITabelView中爲兩個文本字段輸入值。UIAutomation腳本用於設置UItableView中的文本字段值
我嘗試的劇本是低於第一小區
var target = UIATarget.localTarget();
var app = target.frontMostApp();
var window = app.mainWindow();
target.delay(1);
var tableView = window.tableViews()[0];
tableView.logElementTree();
var cellOne = tableView.cells()[0].textFields()[0].setValue(「username」);
var cellTwo = tableView.cells()[1].textFields()[0].setValue(「password」);
文本字段總是被進入,但第二個總是失敗。當我嘗試登錄其元素樹時,它返回UIElementNil
我的腳本有什麼問題嗎?