Skip to content

Commit dc859d1

Browse files
committed
updating documentation to reflect that table views will scroll while waiting for a cel to appear
1 parent 1cbeff4 commit dc859d1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Classes/KIFUITestActor.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
617617
- (void)tapStatusBar;
618618

619619
/*!
620-
@abstract Waits for the cell at indexPath in a table view with the given identifier.
620+
@abstract Scrolls a table view with the given identifier while waiting for the cell at the given indexPath to appear.
621621
@discussion This step will get the view with the specified accessibility identifier and then get the cell at the indexPath.
622622
623623
For cases where you may need to work from the end of a table view rather than the beginning, negative sections count back from the end of the table view (-1 is the last section) and negative rows count back from the end of the section (-1 is the last row for that section).
@@ -629,7 +629,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
629629
- (UITableViewCell *)waitForCellAtIndexPath:(NSIndexPath *)indexPath inTableViewWithAccessibilityIdentifier:(NSString *)identifier;
630630

631631
/*!
632-
@abstract Waits for the cell at indexPath in a given table view.
632+
@abstract Scrolls a table view while waiting for the cell at the given indexPath to appear.
633633
@discussion This step will get the cell at the indexPath.
634634
635635
For cases where you may need to work from the end of a table view rather than the beginning, negative sections count back from the end of the table view (-1 is the last section) and negative rows count back from the end of the section (-1 is the last row for that section).
@@ -641,7 +641,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
641641
- (UITableViewCell *)waitForCellAtIndexPath:(NSIndexPath *)indexPath inTableView:(UITableView *)tableView;
642642

643643
/*!
644-
@abstract Waits for the cell at indexPath in a given collection view.
644+
@abstract Scrolls a collection view while waiting for the cell at the given indexPath to appear.
645645
@discussion This step will get the cell at the indexPath.
646646
647647
For cases where you may need to work from the end of a table view rather than the beginning, negative sections count back from the end of the table view (-1 is the last section) and negative rows count back from the end of the section (-1 is the last row for that section).
@@ -654,7 +654,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
654654

655655

656656
/*!
657-
@abstract Waits for the cell at indexPath in a collection view with the given identifier.
657+
@abstract Scrolls a given collection view while waiting for the item at the given indexPath to appear.
658658
@discussion This step will get the view with the specified accessibility identifier and then get the cell at indexPath.
659659
660660
For cases where you may need to work from the end of a collection view rather than the beginning, negative sections count back from the end of the collection view (-1 is the last section) and negative items count back from the end of the section (-1 is the last item for that section).

0 commit comments

Comments
 (0)