-
Notifications
You must be signed in to change notification settings - Fork 0
/
KIFTestStep+Steps.h
25 lines (17 loc) · 1010 Bytes
/
KIFTestStep+Steps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import "KIFTestStep.h"
@interface KIFTestStep (Steps)
- (KIFTestStep*)_setTimeout:(NSTimeInterval)timeout;
- (KIFTestStep*)_setDescription:(NSString*)desc;
+ (KIFTestStep*)stepToDismissAllAlertViewsAndActionSheets;
+ (KIFTestStep*)stepToClearTextFieldWithLabel:(NSString*)label;
+ (KIFTestStep*)stepToFailWithAccessibilityLabel:(NSString*)label;
+ (KIFTestStep*)stepToAssumeFirstResponderAtElementWithAccessibilityLabel:(NSString*)label;
+ (KIFTestStep*)stepToAssumeFirstResponderNotAtElementWithAccessibilityLabel:(NSString*)label;
+ (KIFTestStep*)stepToTapKeyBoardReturnKeyOfType:(UIReturnKeyType)type;
+ (KIFTestStep*)stepToTapBackButton;
+ (KIFTestStep*)stepToTapViewWithLocalizedAccessibilityLabel:(NSString*)localizedKey;
+ (KIFTestStep*)stepSetFocusOnSearchbar:(NSString*)accessibilityLabel;
+ (KIFTestStep*)stepToTapSearchBarScope:(NSInteger)scopeBarIndex
inSearchbarWithLabel:(NSString*)searchBarAccessibilityLabel;
+ (id)accessibilityViewWithLabel:(NSString*)label;
@end