appium-webdriveragent 3.15.0 → 3.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h +4 -2
  2. package/PrivateHeaders/XCTest/XCUIScreen.h +4 -3
  3. package/WebDriverAgent.xcodeproj/project.pbxproj +36 -0
  4. package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  5. package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +1369 -500
  6. package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h +9 -6
  7. package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +4 -6
  8. package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.h +23 -0
  9. package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.m +32 -0
  10. package/WebDriverAgentLib/Commands/FBDebugCommands.m +6 -3
  11. package/WebDriverAgentLib/Utilities/FBConfiguration.h +5 -0
  12. package/WebDriverAgentLib/Utilities/FBConfiguration.m +6 -0
  13. package/WebDriverAgentLib/Utilities/FBMjpegServer.m +1 -1
  14. package/WebDriverAgentLib/Utilities/FBReflectionUtils.h +24 -0
  15. package/WebDriverAgentLib/Utilities/FBReflectionUtils.m +32 -0
  16. package/WebDriverAgentLib/Utilities/FBScreenshot.h +1 -1
  17. package/WebDriverAgentLib/Utilities/FBScreenshot.m +3 -3
  18. package/WebDriverAgentLib/Utilities/FBXCAXClientProxy.m +5 -23
  19. package/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.h +46 -0
  20. package/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.m +26 -0
  21. package/WebDriverAgentLib/Utilities/FBXPath.h +4 -3
  22. package/WebDriverAgentLib/Utilities/FBXPath.m +65 -28
  23. package/WebDriverAgentRunner/UITestingUITests.m +1 -0
  24. package/WebDriverAgentRunner-Runner.app.zip +0 -0
  25. package/WebDriverAgentTests/IntegrationTests/FBAlertTests.m +1 -0
  26. package/WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m +16 -2
  27. package/WebDriverAgentTests/UnitTests/FBXPathTests.m +28 -15
  28. package/package.json +2 -2
  29. package/WebDriverAgentLib/.DS_Store +0 -0
@@ -44,8 +44,10 @@
44
44
  - (void)_XCT_exchangeProtocolVersion:(unsigned long long)arg1 reply:(void (^)(unsigned long long))arg2;
45
45
 
46
46
  // Available since Xcode9
47
- - (void)_XCT_requestScreenshotOfScreenWithID:(unsigned int)arg1 withRect:(struct CGRect)arg2 uti:(NSString *)arg3 compressionQuality:(double)arg4 withReply:(void (^)(NSData *, NSError *))arg5;
48
- - (void)_XCT_requestScreenshotOfScreenWithID:(unsigned int)arg1 withRect:(struct CGRect)arg2 withReply:(void (^)(NSData *, NSError *))arg3;
47
+ // The first screenID type changed from "unsigned int" to "long long" since Xcode 13.3 in XCTAutomationSupport.framework/XCTScreenshotRequest.h
48
+ // but this place is still "unsigned int" in the header. Appium/WDA changes to "long long" for Xcode 13.3 x iOS 15.4 environment.
49
+ - (void)_XCT_requestScreenshotOfScreenWithID:(long long)arg1 withRect:(struct CGRect)arg2 uti:(NSString *)arg3 compressionQuality:(double)arg4 withReply:(void (^)(NSData *, NSError *))arg5;
50
+ - (void)_XCT_requestScreenshotOfScreenWithID:(long long)arg1 withRect:(struct CGRect)arg2 withReply:(void (^)(NSData *, NSError *))arg3;
49
51
  - (void)_XCT_requestSnapshotForElement:(XCAccessibilityElement *)arg1 attributes:(NSArray *)arg2 parameters:(NSDictionary *)arg3 reply:(void (^)(XCElementSnapshot *, NSError *))arg4;
50
52
 
51
53
  // Available since Xcode 12.5. Required (!!!) to use since Xcode 13
@@ -7,10 +7,10 @@
7
7
  @interface XCUIScreen()
8
8
  {
9
9
  _Bool _isMainScreen;
10
- int _displayID;
10
+ long long _displayID;
11
11
  }
12
12
  @property(readonly) _Bool isMainScreen; // @synthesize isMainScreen=_isMainScreen;
13
- @property(readonly) int displayID; // @synthesize displayID=_displayID;
13
+ @property(readonly) long long displayID; // @synthesize displayID=_displayID;
14
14
 
15
15
  - (id)_clippedScreenshotData:(id)arg1 quality:(long long)arg2 rect:(struct CGRect)arg3 scale:(double)arg4;
16
16
  - (id)_screenshotDataForQuality:(long long)arg1 rect:(struct CGRect)arg2 error:(id *)arg3;
@@ -20,7 +20,8 @@
20
20
  - (id)screenshot;
21
21
  - (id)_imageFromData:(id)arg1;
22
22
  - (double)scale;
23
- - (id)initWithDisplayID:(int)arg1 isMainScreen:(_Bool)arg2;
23
+
24
+ - (id)initWithDisplayID:(long long)arg1 isMainScreen:(_Bool)arg2 device:(id)arg3 screenDataSource:(id)arg4;
24
25
 
25
26
  @end
26
27
 
@@ -347,6 +347,10 @@
347
347
  71414EDA2670A1EE003A8C5D /* LRUCacheNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 71414ED32670A1ED003A8C5D /* LRUCacheNode.m */; };
348
348
  71414EDB2670A1EE003A8C5D /* LRUCacheNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 71414ED32670A1ED003A8C5D /* LRUCacheNode.m */; };
349
349
  714801D11FA9D9FA00DC5997 /* FBSDKVersionTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 714801D01FA9D9FA00DC5997 /* FBSDKVersionTests.m */; };
350
+ 714D88CC2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */; };
351
+ 714D88CD2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */; };
352
+ 714D88CE2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */; };
353
+ 714D88CF2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */; };
350
354
  714EAA0D2673FDFE005C5B47 /* FBCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 714EAA0B2673FDFE005C5B47 /* FBCapabilities.h */; };
351
355
  714EAA0E2673FDFE005C5B47 /* FBCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 714EAA0B2673FDFE005C5B47 /* FBCapabilities.h */; };
352
356
  714EAA0F2673FDFE005C5B47 /* FBCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 714EAA0C2673FDFE005C5B47 /* FBCapabilities.m */; };
@@ -386,6 +390,14 @@
386
390
  71649ECE2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
387
391
  716C9346224D540C004B8542 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
388
392
  716C9347224D540C004B8542 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
393
+ 716C9DFA27315D21005AD475 /* FBReflectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DF827315D21005AD475 /* FBReflectionUtils.h */; };
394
+ 716C9DFB27315D21005AD475 /* FBReflectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DF827315D21005AD475 /* FBReflectionUtils.h */; };
395
+ 716C9DFC27315D21005AD475 /* FBReflectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DF927315D21005AD475 /* FBReflectionUtils.m */; };
396
+ 716C9DFD27315D21005AD475 /* FBReflectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DF927315D21005AD475 /* FBReflectionUtils.m */; };
397
+ 716C9E0027315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */; };
398
+ 716C9E0127315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */; };
399
+ 716C9E0227315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */; };
400
+ 716C9E0327315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */; };
389
401
  716E0BCE1E917E810087A825 /* NSString+FBXMLSafeString.h in Headers */ = {isa = PBXBuildFile; fileRef = 716E0BCC1E917E810087A825 /* NSString+FBXMLSafeString.h */; };
390
402
  716E0BCF1E917E810087A825 /* NSString+FBXMLSafeString.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BCD1E917E810087A825 /* NSString+FBXMLSafeString.m */; };
391
403
  716E0BD11E917F260087A825 /* FBXMLSafeStringTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BD01E917F260087A825 /* FBXMLSafeStringTests.m */; };
@@ -966,6 +978,8 @@
966
978
  71414ED32670A1ED003A8C5D /* LRUCacheNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LRUCacheNode.m; sourceTree = "<group>"; };
967
979
  714801D01FA9D9FA00DC5997 /* FBSDKVersionTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBSDKVersionTests.m; sourceTree = "<group>"; };
968
980
  714CA3C61DC23186000F12C9 /* FBXPathIntegrationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBXPathIntegrationTests.m; sourceTree = "<group>"; };
981
+ 714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBXMLGenerationOptions.h; sourceTree = "<group>"; };
982
+ 714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBXMLGenerationOptions.m; sourceTree = "<group>"; };
969
983
  714EAA0B2673FDFE005C5B47 /* FBCapabilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBCapabilities.h; sourceTree = "<group>"; };
970
984
  714EAA0C2673FDFE005C5B47 /* FBCapabilities.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBCapabilities.m; sourceTree = "<group>"; };
971
985
  7150348521A6DAD600A0F4BA /* FBImageUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBImageUtils.h; sourceTree = "<group>"; };
@@ -992,6 +1006,10 @@
992
1006
  716C9343224D53DF004B8542 /* libAccessibility.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libAccessibility.tbd; path = usr/lib/libAccessibility.tbd; sourceTree = SDKROOT; };
993
1007
  716C9344224D53FC004B8542 /* XCTAutomationSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTAutomationSupport.framework; path = Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework; sourceTree = DEVELOPER_DIR; };
994
1008
  716C9345224D540C004B8542 /* libxml2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.tbd; path = usr/lib/libxml2.tbd; sourceTree = SDKROOT; };
1009
+ 716C9DF827315D21005AD475 /* FBReflectionUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBReflectionUtils.h; sourceTree = "<group>"; };
1010
+ 716C9DF927315D21005AD475 /* FBReflectionUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBReflectionUtils.m; sourceTree = "<group>"; };
1011
+ 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCUIApplication+FBUIInterruptions.h"; sourceTree = "<group>"; };
1012
+ 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "XCUIApplication+FBUIInterruptions.m"; sourceTree = "<group>"; };
995
1013
  716E0BCC1E917E810087A825 /* NSString+FBXMLSafeString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+FBXMLSafeString.h"; sourceTree = "<group>"; };
996
1014
  716E0BCD1E917E810087A825 /* NSString+FBXMLSafeString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+FBXMLSafeString.m"; sourceTree = "<group>"; };
997
1015
  716E0BD01E917F260087A825 /* FBXMLSafeStringTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBXMLSafeStringTests.m; sourceTree = "<group>"; };
@@ -1725,6 +1743,8 @@
1725
1743
  AD6C269B1CF2494200F8B5FF /* XCUIApplication+FBHelpers.m */,
1726
1744
  71C8E54F25399A6B008572C1 /* XCUIApplication+FBQuiescence.h */,
1727
1745
  71C8E55025399A6B008572C1 /* XCUIApplication+FBQuiescence.m */,
1746
+ 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */,
1747
+ 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */,
1728
1748
  71D475C02538F5A8008D9401 /* XCUIApplicationProcess+FBQuiescence.h */,
1729
1749
  71D475C12538F5A8008D9401 /* XCUIApplicationProcess+FBQuiescence.m */,
1730
1750
  EEC9EED420064FAA00BC0D5B /* XCUICoordinate+FBFix.h */,
@@ -1899,6 +1919,8 @@
1899
1919
  EEEC7C911F21F27A0053426C /* FBPredicate.m */,
1900
1920
  71B155DD23080CA600646AFB /* FBProtocolHelpers.h */,
1901
1921
  71B155DE23080CA600646AFB /* FBProtocolHelpers.m */,
1922
+ 716C9DF827315D21005AD475 /* FBReflectionUtils.h */,
1923
+ 716C9DF927315D21005AD475 /* FBReflectionUtils.m */,
1902
1924
  EEE9B4701CD02B88009D2030 /* FBRunLoopSpinner.h */,
1903
1925
  EEE9B4711CD02B88009D2030 /* FBRunLoopSpinner.m */,
1904
1926
  EE9AB7911CAEDF0C008C271F /* FBRuntimeUtils.h */,
@@ -1926,6 +1948,8 @@
1926
1948
  EE7E271B1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m */,
1927
1949
  EE35AD791E3B80C000A02D78 /* FBXCTestDaemonsProxy.h */,
1928
1950
  EE35AD7A1E3B80C000A02D78 /* FBXCTestDaemonsProxy.m */,
1951
+ 714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */,
1952
+ 714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */,
1929
1953
  712A0C861DA3E55D007D02E5 /* FBXPath-Private.h */,
1930
1954
  711084421DA3AA7500F913D6 /* FBXPath.h */,
1931
1955
  711084431DA3AA7500F913D6 /* FBXPath.m */,
@@ -2247,6 +2271,7 @@
2247
2271
  641EE6352240C5CA00173FCB /* XCUIElement+FBUtilities.h in Headers */,
2248
2272
  641EE6362240C5CA00173FCB /* XCUIElement+FBScrolling.h in Headers */,
2249
2273
  1357E297233D05240054BDB8 /* XCUIHitPointResult.h in Headers */,
2274
+ 716C9DFB27315D21005AD475 /* FBReflectionUtils.h in Headers */,
2250
2275
  641EE6372240C5CA00173FCB /* XCSourceCodeTreeNode.h in Headers */,
2251
2276
  641EE6382240C5CA00173FCB /* XCPointerEventPath.h in Headers */,
2252
2277
  641EE6392240C5CA00173FCB /* FBRouteRequest.h in Headers */,
@@ -2260,6 +2285,7 @@
2260
2285
  641EE63E2240C5CA00173FCB /* _XCTestImplementation.h in Headers */,
2261
2286
  641EE63F2240C5CA00173FCB /* FBTouchActionCommands.h in Headers */,
2262
2287
  641EE6402240C5CA00173FCB /* FBTouchIDCommands.h in Headers */,
2288
+ 714D88CD2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
2263
2289
  641EE6412240C5CA00173FCB /* XCUIApplication.h in Headers */,
2264
2290
  641EE6422240C5CA00173FCB /* FBCustomCommands.h in Headers */,
2265
2291
  641EE6432240C5CA00173FCB /* _XCTestCaseInterruptionException.h in Headers */,
@@ -2312,6 +2338,7 @@
2312
2338
  641EE66C2240C5CA00173FCB /* UIPinchGestureRecognizer-RecordingAdditions.h in Headers */,
2313
2339
  641EE66D2240C5CA00173FCB /* XCTestManager_TestsInterface-Protocol.h in Headers */,
2314
2340
  641EE66E2240C5CA00173FCB /* XCUIApplication+FBAlert.h in Headers */,
2341
+ 716C9E0127315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */,
2315
2342
  7182275C258744C300661B83 /* HTTPServer.h in Headers */,
2316
2343
  641EE66F2240C5CA00173FCB /* XCDeviceEvent.h in Headers */,
2317
2344
  641EE6702240C5CA00173FCB /* FBMathUtils.h in Headers */,
@@ -2485,6 +2512,7 @@
2485
2512
  71F5BE4F252F14EB00EE9EBA /* FBExceptions.h in Headers */,
2486
2513
  648C10AB22AAAD9C00B81B9A /* UIKeyboardImpl.h in Headers */,
2487
2514
  EE35AD401E3B77D600A02D78 /* XCTest.h in Headers */,
2515
+ 716C9E0027315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */,
2488
2516
  719CD8F82126C78F00C7D0C2 /* FBAlertsMonitor.h in Headers */,
2489
2517
  EE35AD241E3B77D600A02D78 /* XCAccessibilityElement.h in Headers */,
2490
2518
  EE158AE41CBD456F00A3E3F0 /* FBSession.h in Headers */,
@@ -2646,6 +2674,7 @@
2646
2674
  EE35AD261E3B77D600A02D78 /* XCApplicationMonitor_iOS.h in Headers */,
2647
2675
  EE3A18661CDE734B00DE4205 /* FBKeyboard.h in Headers */,
2648
2676
  AD6C269C1CF2494200F8B5FF /* XCUIApplication+FBHelpers.h in Headers */,
2677
+ 714D88CC2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
2649
2678
  EE35AD101E3B77D600A02D78 /* _XCTestObservationCenterImplementation.h in Headers */,
2650
2679
  AD6C26981CF2481700F8B5FF /* XCUIDevice+FBHelpers.h in Headers */,
2651
2680
  71A7EAF91E224648001DA4F2 /* FBClassChainQueryParser.h in Headers */,
@@ -2688,6 +2717,7 @@
2688
2717
  EE35AD151E3B77D600A02D78 /* CDStructures.h in Headers */,
2689
2718
  71E75E6D254824230099FC87 /* XCUIElementQuery+FBHelpers.h in Headers */,
2690
2719
  EE35AD311E3B77D600A02D78 /* XCKeyboardLayout.h in Headers */,
2720
+ 716C9DFA27315D21005AD475 /* FBReflectionUtils.h in Headers */,
2691
2721
  E444DCB624913C220060D7EB /* RouteRequest.h in Headers */,
2692
2722
  71F5BE23252E576C00EE9EBA /* XCUIElement+FBSwiping.h in Headers */,
2693
2723
  718226CC2587443700661B83 /* GCDAsyncSocket.h in Headers */,
@@ -3082,6 +3112,7 @@
3082
3112
  641EE5DC2240C5CA00173FCB /* XCUIApplication+FBAlert.m in Sources */,
3083
3113
  641EE5DD2240C5CA00173FCB /* FBAppiumActionsSynthesizer.m in Sources */,
3084
3114
  641EE70F2240CE4800173FCB /* FBTVNavigationTracker.m in Sources */,
3115
+ 714D88CF2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
3085
3116
  641EE5DE2240C5CA00173FCB /* XCUIApplication+FBTouchAction.m in Sources */,
3086
3117
  641EE5DF2240C5CA00173FCB /* FBWebServer.m in Sources */,
3087
3118
  641EE5E02240C5CA00173FCB /* FBTCPSocket.m in Sources */,
@@ -3120,6 +3151,7 @@
3120
3151
  641EE5FD2240C5CA00173FCB /* FBBaseActionsSynthesizer.m in Sources */,
3121
3152
  641EE5FE2240C5CA00173FCB /* XCUIElement+FBWebDriverAttributes.m in Sources */,
3122
3153
  641EE5FF2240C5CA00173FCB /* XCUIElement+FBForceTouch.m in Sources */,
3154
+ 716C9E0327315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */,
3123
3155
  641EE6002240C5CA00173FCB /* FBTouchActionCommands.m in Sources */,
3124
3156
  719DCF182601EAFB000E765F /* FBNotificationsHelper.m in Sources */,
3125
3157
  714EAA102673FDFE005C5B47 /* FBCapabilities.m in Sources */,
@@ -3154,6 +3186,7 @@
3154
3186
  641EE61B2240C5CA00173FCB /* FBPasteboard.m in Sources */,
3155
3187
  641EE61C2240C5CA00173FCB /* FBAlert.m in Sources */,
3156
3188
  718F49CB23087B040045FE8B /* FBCommandStatus.m in Sources */,
3189
+ 716C9DFD27315D21005AD475 /* FBReflectionUtils.m in Sources */,
3157
3190
  641EE61D2240C5CA00173FCB /* FBElementCommands.m in Sources */,
3158
3191
  641EE61E2240C5CA00173FCB /* FBExceptionHandler.m in Sources */,
3159
3192
  641EE61F2240C5CA00173FCB /* FBXCodeCompatibility.m in Sources */,
@@ -3231,6 +3264,7 @@
3231
3264
  EE7E271F1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m in Sources */,
3232
3265
  7155D704211DCEF400166C20 /* FBMjpegServer.m in Sources */,
3233
3266
  EEDFE1221D9C06F800E6FFE5 /* XCUIDevice+FBHealthCheck.m in Sources */,
3267
+ 714D88CE2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
3234
3268
  E444DCB424913C220060D7EB /* RoutingHTTPServer.m in Sources */,
3235
3269
  7140974E1FAE20EE008FB2C5 /* FBBaseActionsSynthesizer.m in Sources */,
3236
3270
  EEE3764A1D59FAE900ED88DD /* XCUIElement+FBWebDriverAttributes.m in Sources */,
@@ -3253,6 +3287,7 @@
3253
3287
  EE9B76A91CF7A43900275851 /* FBLogger.m in Sources */,
3254
3288
  EE158ABB1CBD456F00A3E3F0 /* FBCustomCommands.m in Sources */,
3255
3289
  AD6C26991CF2481700F8B5FF /* XCUIDevice+FBHelpers.m in Sources */,
3290
+ 716C9E0227315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */,
3256
3291
  EE6B64FE1D0F86EF00E85F5D /* XCTestPrivateSymbols.m in Sources */,
3257
3292
  AD76723E1D6B7CC000610457 /* XCUIElement+FBTyping.m in Sources */,
3258
3293
  EE158AAF1CBD456F00A3E3F0 /* XCUIElement+FBAccessibility.m in Sources */,
@@ -3265,6 +3300,7 @@
3265
3300
  E444DCB224913C220060D7EB /* RoutingConnection.m in Sources */,
3266
3301
  EE158AC11CBD456F00A3E3F0 /* FBFindElementCommands.m in Sources */,
3267
3302
  EE7E271D1D06C69F001BEC7B /* FBDebugLogDelegateDecorator.m in Sources */,
3303
+ 716C9DFC27315D21005AD475 /* FBReflectionUtils.m in Sources */,
3268
3304
  71C8E55325399A6B008572C1 /* XCUIApplication+FBQuiescence.m in Sources */,
3269
3305
  71414EDA2670A1EE003A8C5D /* LRUCacheNode.m in Sources */,
3270
3306
  EE158AB91CBD456F00A3E3F0 /* FBAlertViewCommands.m in Sources */,