| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * Copyright (c) 2018-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 <XCTest/XCTest.h>
- NS_ASSUME_NONNULL_BEGIN
- #if TARGET_OS_TV
- @interface XCUIElement (FBTVFocuse)
- /**
- Sets focus
- @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_setFocusWithError:(NSError**) error;
- /**
- Select a focused element
- @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_selectWithError:(NSError**) error;
- @end
- #endif
- NS_ASSUME_NONNULL_END
|