FBCapabilities.m 1.3 KB

12345678910111213141516171819202122232425
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. */
  9. #import "FBCapabilities.h"
  10. NSString* const FB_CAP_USE_TEST_MANAGER_FOR_VISIBLITY_DETECTION = @"shouldUseTestManagerForVisibilityDetection";
  11. NSString* const FB_CAP_MAX_TYPING_FREQUENCY = @"maxTypingFrequency";
  12. NSString* const FB_CAP_USE_SINGLETON_TEST_MANAGER = @"shouldUseSingletonTestManager";
  13. NSString* const FB_CAP_DISABLE_AUTOMATIC_SCREENSHOTS = @"disableAutomaticScreenshots";
  14. NSString* const FB_CAP_SHOULD_TERMINATE_APP = @"shouldTerminateApp";
  15. NSString* const FB_CAP_EVENT_LOOP_IDLE_DELAY_SEC = @"eventloopIdleDelaySec";
  16. NSString* const FB_CAP_BUNDLE_ID = @"bundleId";
  17. NSString* const FB_CAP_INITIAL_URL = @"initialUrl";
  18. NSString* const FB_CAP_FORCE_APP_LAUNCH = @"forceAppLaunch";
  19. NSString* const FB_CAP_SHOULD_WAIT_FOR_QUIESCENCE = @"shouldWaitForQuiescence";
  20. NSString* const FB_CAP_ARGUMENTS = @"arguments";
  21. NSString* const FB_CAP_ENVIRNOMENT = @"environment";
  22. NSString* const FB_CAP_USE_NATIVE_CACHING_STRATEGY = @"useNativeCachingStrategy";
  23. NSString* const FB_CAP_FORCE_SIMULATOR_SOFTWARE_KEYBOARD_PRESENCE = @"forceSimulatorSoftwareKeyboardPresence";