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

67 lines
1.9 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/WebDriverAgentLib.h>
NS_ASSUME_NONNULL_BEGIN
/**
Set of categories that patches method name differences between Xcode versions,
so that WDA can be build with different Xcode versions.
*/
@interface XCElementSnapshot (FBCompatibility)
- (nullable XCElementSnapshot *)fb_rootElement;
@end
/**
The exception happends if one tries to call application method,
which is not supported in the current iOS version
*/
extern NSString *const FBApplicationMethodNotSupportedException;
@interface XCUIApplication (FBCompatibility)
+ (nullable instancetype)fb_applicationWithPID:(pid_t)processID;
/**
Get the state of the application. This method only returns reliable results on Xcode SDK 9+
@return State value as enum item. See https://developer.apple.com/documentation/xctest/xcuiapplicationstate?language=objc for more details.
*/
- (NSUInteger)fb_state;
/**
Activate the application by restoring it from the background.
Nothing will happen if the application is already in foreground.
This method is only supported since Xcode9.
@throws FBApplicationMethodNotSupportedException if the method is called on Xcode SDK older than 9.
*/
- (void)fb_activate;
/**
Use this method to check whether application activation is supported by the current iOS SDK.
@return YES if application activation is supported.
*/
- (BOOL)fb_isActivateSupported;
@end
@interface XCUIElementQuery (FBCompatibility)
/* Performs short-circuit UI tree traversion in iOS 11+ to get the first element matched by the query. Equals to nil if no matching elements are found */
@property(nullable, readonly) XCUIElement *fb_firstMatch;
@end
NS_ASSUME_NONNULL_END