我想實現一個UIAutomation腳本如下:UIAutomation UICollectionView細胞不能被竊聽
var target = UIATarget.localTarget();
var window = target.frontMostApp().mainWindow();
var collectionView = window.collectionViews()[0];
collectionView.cells()[0].tap();
當我運行該腳本,我得到的日誌中的以下內容:
target.frontMostApp().mainWindow().collectionViews()[0].cells()[0].tap()
target.frontMostApp().mainWindow().collectionViews()[0].cells()[0].scrollToVisible()
Script threw an uncaught javascript error: t...cells()[0] could not be tapped
如果我打電話這對任何其他單元格它的工作,但由於某種原因,第一個不。那裏有人遇到過這個問題?
感謝您的回答!會投票,但沒有代表;) – Bounce