Files
Monkey-Test/WebDriverAgent/WebDriverAgentLib/FBSpringboardApplication.h
T
2019-01-25 17:01:52 +08:00

44 lines
1.3 KiB
Objective-C
Executable File

/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <WebDriverAgentLib/FBApplication.h>
NS_ASSUME_NONNULL_BEGIN
/*! Bundle identifier of Springboard app */
extern NSString *const SPRINGBOARD_BUNDLE_ID;
@interface FBSpringboardApplication : FBApplication
/**
@return FBApplication that is attached to SpringBoard
*/
+ (instancetype)fb_springboard;
/**
Taps application on SpringBoard app with given identifier
@param identifier identifier of the application to tap
@param error If there is an error, upon return contains an NSError object that describes the problem.
@return YES if the operation succeeds, otherwise NO.
*/
- (BOOL)fb_tapApplicationWithIdentifier:(NSString *)identifier error:(NSError **)error;
/**
Waits until application board is visible with timeout
@param error If there is an error, upon return contains an NSError object that describes the problem.
@return YES if the operation succeeds, otherwise NO.
*/
- (BOOL)fb_waitUntilApplicationBoardIsVisible:(NSError **)error;
@end
NS_ASSUME_NONNULL_END