現在我和他的UIAutomation, UITableView inside UITableViewCell有同樣的問題,但我無法像他那樣解決問題。我有與他的四個單元格類似的屏幕,但他們的名字是不同的。使用函數LogElementTree,我已經得到了與他相同的層次結構,但有一點點。在他的情況下,他已經得到了這一點:訪問TableView的UIAutomation問題
UIAWindow
UIATableView
UIATableCell
UIATableView
UIATableCell 1
UIATableCell 2
UIATableCell 3
UIATableCell 4
但我有這樣的:
UIAWindow
UIATableCell 1
UIATableCell 2
UIATableCell 3
UIATableCell 4
使用他的回答,我寫我的代碼:
target.frontMostApp().mainWindow().cells()["Author"].tap();
OR
target.frontMostApp().mainWindow().cells()[0].tap();
但它沒有奏效。那麼請有人來描述如何解決我的問題。