Skip to content

Commit

Permalink
updating documentation to reflect that table views will scroll while …
Browse files Browse the repository at this point in the history
…waiting for a cel to appear
  • Loading branch information
aodawa committed Mar 2, 2016
1 parent 1cbeff4 commit dc859d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Classes/KIFUITestActor.h
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
- (void)tapStatusBar;

/*!
@abstract Waits for the cell at indexPath in a table view with the given identifier.
@abstract Scrolls a table view with the given identifier while waiting for the cell at the given indexPath to appear.
@discussion This step will get the view with the specified accessibility identifier and then get the cell at the indexPath.
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).
Expand All @@ -629,7 +629,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
- (UITableViewCell *)waitForCellAtIndexPath:(NSIndexPath *)indexPath inTableViewWithAccessibilityIdentifier:(NSString *)identifier;

/*!
@abstract Waits for the cell at indexPath in a given table view.
@abstract Scrolls a table view while waiting for the cell at the given indexPath to appear.
@discussion This step will get the cell at the indexPath.
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).
Expand All @@ -641,7 +641,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec
- (UITableViewCell *)waitForCellAtIndexPath:(NSIndexPath *)indexPath inTableView:(UITableView *)tableView;

/*!
@abstract Waits for the cell at indexPath in a given collection view.
@abstract Scrolls a collection view while waiting for the cell at the given indexPath to appear.
@discussion This step will get the cell at the indexPath.
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).
Expand All @@ -654,7 +654,7 @@ static inline KIFDisplacement KIFDisplacementForSwipingInDirection(KIFSwipeDirec


/*!
@abstract Waits for the cell at indexPath in a collection view with the given identifier.
@abstract Scrolls a given collection view while waiting for the item at the given indexPath to appear.
@discussion This step will get the view with the specified accessibility identifier and then get the cell at indexPath.
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).
Expand Down

0 comments on commit dc859d1

Please sign in to comment.