当我尝试点击屏幕外的表格视图时,我得到:
Debug: target.frontMostApp().mainWindow().tableViews()[0].cells()[16] could not be tapped
Error: Script threw an uncaught JavaScript error: target.frontMostApp().mainWindow().tableViews()[0].cells()[16] could not be tapped
在屏幕上显示此单元格的最佳方法是什么?我应该使用dragInsideWithOptions还是scrollToVisible?
答案 0 :(得分:0)
您可以在单元格上调用scrollToVisible()
。
示例:
var cell = tableView.cells()[5];
cell.scrollToVisible();