我正在编写测试,我想通过滑动删除 tableViewCell,暴露红色的“删除”编辑操作。我可以很好地滑动单元格,但是当我尝试使用tapAtPoint
.
这直接来自GREYActions.h
:
* @param point The point that should be tapped. It must be in the coordinate system of the element and it's position is relative to the origin of the element, as in (element_width/2, element_height/2) will tap at the center of element.
我已经尝试使用元素的框架和边界宽度减去 1 点,然后像这样在单元格的中途:
CGPointMake(element.frame.size.width - 1, element.frame.size.height / 2)
我仍然无法点击单元格的末尾。
如果我能进一步解释,请告诉我。