appium-webdriveragent 3.15.0 → 4.1.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.
- package/PrivateHeaders/XCTest/XCAXClient_iOS.h +0 -7
- package/PrivateHeaders/XCTest/XCAccessibilityElement.h +2 -0
- package/PrivateHeaders/XCTest/XCElementSnapshot.h +0 -7
- package/PrivateHeaders/XCTest/XCPointerEventPath.h +0 -2
- package/PrivateHeaders/XCTest/XCTestCaseRun.h +0 -2
- package/PrivateHeaders/XCTest/XCTestDriver.h +0 -6
- package/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h +0 -2
- package/PrivateHeaders/XCTest/XCUIApplication.h +0 -3
- package/PrivateHeaders/XCTest/XCUIDevice.h +0 -2
- package/PrivateHeaders/XCTest/XCUIElement.h +0 -5
- package/PrivateHeaders/XCTest/XCUIElementQuery.h +0 -2
- package/Scripts/build-webdriveragent.js +1 -1
- package/Scripts/fetch-prebuilt-wda.js +1 -1
- package/WebDriverAgent.xcodeproj/project.pbxproj +46 -33
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp.xcscheme +3 -7
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_1.xcscheme +1 -1
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_2.xcscheme +1 -1
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_3.xcscheme +1 -1
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib.xcscheme +10 -14
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib_tvOS.xcscheme +10 -14
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner-nodebug.xcscheme +3 -7
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner.xcscheme +1 -1
- package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner_tvOS.xcscheme +1 -1
- package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +1208 -498
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h +9 -15
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +4 -22
- package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.h +23 -0
- package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.m +32 -0
- package/WebDriverAgentLib/Categories/XCUIElement+FBSwiping.h +1 -2
- package/WebDriverAgentLib/Categories/XCUIElement+FBSwiping.m +1 -5
- package/WebDriverAgentLib/Categories/XCUIElement+FBUtilities.m +1 -7
- package/WebDriverAgentLib/Commands/FBAlertViewCommands.m +6 -6
- package/WebDriverAgentLib/Commands/FBCustomCommands.m +1 -5
- package/WebDriverAgentLib/Commands/FBDebugCommands.m +6 -3
- package/WebDriverAgentLib/FBAlert.m +1 -0
- package/WebDriverAgentLib/FBApplication.m +1 -12
- package/WebDriverAgentLib/Utilities/FBConfiguration.h +5 -0
- package/WebDriverAgentLib/Utilities/FBConfiguration.m +6 -0
- package/WebDriverAgentLib/Utilities/FBFailureProofTestCase.m +7 -10
- package/WebDriverAgentLib/Utilities/FBReflectionUtils.h +24 -0
- package/WebDriverAgentLib/Utilities/FBReflectionUtils.m +32 -0
- package/WebDriverAgentLib/Utilities/FBScreen.m +3 -1
- package/WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.m +4 -16
- package/WebDriverAgentLib/Utilities/FBXCAXClientProxy.h +0 -2
- package/WebDriverAgentLib/Utilities/FBXCAXClientProxy.m +20 -60
- package/WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.m +4 -15
- package/WebDriverAgentLib/Utilities/FBXCodeCompatibility.h +0 -17
- package/WebDriverAgentLib/Utilities/FBXCodeCompatibility.m +1 -55
- package/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.h +46 -0
- package/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.m +26 -0
- package/WebDriverAgentLib/Utilities/FBXPath.h +4 -3
- package/WebDriverAgentLib/Utilities/FBXPath.m +65 -28
- package/WebDriverAgentRunner/UITestingUITests.m +1 -0
- package/WebDriverAgentRunner-Runner.app.zip +0 -0
- package/WebDriverAgentTests/IntegrationTests/FBAlertTests.m +6 -0
- package/WebDriverAgentTests/IntegrationTests/FBAppiumMultiTouchActionsIntegrationTests.m +7 -0
- package/WebDriverAgentTests/IntegrationTests/FBAppiumTouchActionsIntegrationTests.m +19 -0
- package/WebDriverAgentTests/IntegrationTests/FBElementScreenshotTests.m +4 -0
- package/WebDriverAgentTests/IntegrationTests/FBElementSwipingTests.m +71 -6
- package/WebDriverAgentTests/IntegrationTests/FBElementVisibilityTests.m +3 -1
- package/WebDriverAgentTests/IntegrationTests/FBForceTouchTests.m +6 -0
- package/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m +2 -1
- package/WebDriverAgentTests/IntegrationTests/FBKeyboardTests.m +19 -0
- package/WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m +15 -0
- package/WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m +16 -2
- package/WebDriverAgentTests/IntegrationTests/XCUIApplicationHelperTests.m +1 -1
- package/WebDriverAgentTests/IntegrationTests/XCUIElementFBFindTests.m +1 -1
- package/WebDriverAgentTests/UnitTests/FBXPathTests.m +28 -15
- package/build/index.js +2 -4
- package/build/lib/check-dependencies.js +3 -3
- package/build/lib/constants.js +2 -4
- package/build/lib/logger.js +3 -3
- package/build/lib/no-session-proxy.js +3 -3
- package/build/lib/utils.js +16 -16
- package/build/lib/webdriveragent.js +16 -16
- package/build/lib/xcodebuild.js +5 -5
- package/index.js +2 -2
- package/lib/check-dependencies.js +1 -1
- package/lib/constants.js +1 -2
- package/lib/logger.js +1 -1
- package/lib/no-session-proxy.js +1 -1
- package/lib/utils.js +1 -1
- package/lib/webdriveragent.js +2 -2
- package/lib/xcodebuild.js +1 -1
- package/package.json +11 -12
- package/WebDriverAgentLib/.DS_Store +0 -0
|
@@ -19,9 +19,6 @@
|
|
|
19
19
|
}
|
|
20
20
|
@property double AXTimeout;
|
|
21
21
|
|
|
22
|
-
// Removed since Xcode10.2
|
|
23
|
-
+ (id)sharedClient;
|
|
24
|
-
|
|
25
22
|
// Added since Xcode 10.2
|
|
26
23
|
@property(readonly) id applicationProcessTracker;
|
|
27
24
|
|
|
@@ -30,8 +27,6 @@
|
|
|
30
27
|
- (BOOL)performAction:(int)arg1 onElement:(id)arg2 value:(id)arg3 error:(id *)arg4;
|
|
31
28
|
- (id)parameterizedAttributeForElement:(id)arg1 attribute:(id)arg2 parameter:(id)arg3;
|
|
32
29
|
- (BOOL)setAttribute:(id)arg1 value:(id)arg2 element:(id)arg3 outError:(id *)arg4;
|
|
33
|
-
// Removed in Xcode 10.2
|
|
34
|
-
- (id)attributesForElement:(id)arg1 attributes:(id)arg2;
|
|
35
30
|
// since Xcode10
|
|
36
31
|
- (id)attributesForElement:(id)arg1 attributes:(id)arg2 error:(id *)arg3;
|
|
37
32
|
- (id)attributesForElementSnapshot:(id)arg1 attributeList:(id)arg2;
|
|
@@ -54,8 +49,6 @@
|
|
|
54
49
|
- (BOOL)loadAccessibility:(id *)arg1;
|
|
55
50
|
- (BOOL)_registerForAXNotification:(int)arg1 error:(id *)arg2;
|
|
56
51
|
- (BOOL)_loadAccessibility:(id *)arg1;
|
|
57
|
-
// Before Xcode 11
|
|
58
|
-
- (id)snapshotForElement:(XCAccessibilityElement *)arg1 attributes:(id)arg2 parameters:(id)arg3 error:(NSError **)arg4;
|
|
59
52
|
// Since Xcode 11
|
|
60
53
|
- (id)requestSnapshotForElement:(XCAccessibilityElement *)arg1 attributes:(id)arg2 parameters:(id)arg3 error:(NSError **)arg4;
|
|
61
54
|
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
|
|
5
5
|
//
|
|
6
6
|
|
|
7
|
+
// FIXME: Probably we can remove here. instead, probably we should follow only XCElementSnapshot
|
|
8
|
+
|
|
7
9
|
@class NSString;
|
|
8
10
|
|
|
9
11
|
@interface XCAccessibilityElement : NSObject <NSCopying, NSSecureCoding>
|
|
@@ -89,16 +89,9 @@
|
|
|
89
89
|
- (struct CGPoint)_transformPoint:(struct CGPoint)arg1 windowContextID:(id)arg2 windowDisplayID:(id)arg3;
|
|
90
90
|
- (id)hitTest:(struct CGPoint)arg1;
|
|
91
91
|
|
|
92
|
-
/*! DO NOT USE DIRECTLY! Please use fb_rootElement instead */
|
|
93
|
-
- (XCElementSnapshot *)_rootElement;
|
|
94
|
-
/*! DO NOT USE DIRECTLY! Please use fb_rootElement instead */
|
|
95
|
-
- (XCElementSnapshot *)rootElement;
|
|
96
|
-
|
|
97
92
|
// Available since Xcode 10
|
|
98
93
|
- (id)hitPoint:(NSError **)error;
|
|
99
94
|
|
|
100
|
-
// Available only in Xcode 9.0
|
|
101
|
-
+ (id)snapshotAttributesForElementSnapshotKeyPaths:(id)arg1;
|
|
102
95
|
// Available since Xcode 10.0-beta4 on
|
|
103
96
|
+ (id)axAttributesForElementSnapshotKeyPaths:(id)arg1;
|
|
104
97
|
// Since Xcode 10.2
|
|
@@ -31,8 +31,6 @@
|
|
|
31
31
|
- (id)initForTouchAtPoint:(CGPoint)arg1 offset:(double)arg2;
|
|
32
32
|
// Since Xcode 10.2
|
|
33
33
|
- (void)typeKey:(id)arg1 modifiers:(unsigned long long)arg2 atOffset:(double)arg3;
|
|
34
|
-
// Since Xcode 10.2
|
|
35
|
-
- (void)typeText:(id)arg1 atOffset:(double)arg2 typingSpeed:(unsigned long long)arg3;
|
|
36
34
|
// Since Xcode 12.beta5
|
|
37
35
|
- (void)typeText:(id)arg1 atOffset:(double)arg2 typingSpeed:(unsigned long long)arg3 shouldRedact:(_Bool)arg4;
|
|
38
36
|
// Since Xcode 10.2
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
- (void)_recordValues:(id)arg1 forPerformanceMetricID:(id)arg2 name:(id)arg3 unitsOfMeasurement:(id)arg4 baselineName:(id)arg5 baselineAverage:(id)arg6 maxPercentRegression:(id)arg7 maxPercentRelativeStandardDeviation:(id)arg8 maxRegression:(id)arg9 maxStandardDeviation:(id)arg10 file:(id)arg11 line:(unsigned long long)arg12;
|
|
14
|
-
// Removed since Xcode 12.0
|
|
15
|
-
- (void)recordFailureWithDescription:(id)arg1 inFile:(id)arg2 atLine:(unsigned long long)arg3 expected:(BOOL)arg4;
|
|
16
14
|
- (void)recordFailureInTest:(id)arg1 withDescription:(id)arg2 inFile:(id)arg3 atLine:(unsigned long long)arg4 expected:(BOOL)arg5;
|
|
17
15
|
- (void)stop;
|
|
18
16
|
- (void)start;
|
|
@@ -26,9 +26,6 @@
|
|
|
26
26
|
@property(retain) NSObject<OS_dispatch_queue> *queue; // @synthesize queue=_queue;
|
|
27
27
|
@property(readonly) XCTestConfiguration *testConfiguration; // @synthesize testConfiguration=_testConfiguration;
|
|
28
28
|
|
|
29
|
-
// Removed since Xcode 12.0
|
|
30
|
-
+ (instancetype)sharedTestDriver;
|
|
31
|
-
|
|
32
29
|
- (void)runTestConfiguration:(id)arg1 completionHandler:(CDUnknownBlockType)arg2;
|
|
33
30
|
- (void)runTestSuite:(id)arg1 completionHandler:(CDUnknownBlockType)arg2;
|
|
34
31
|
- (void)reportStallOnMainThreadInTestCase:(id)arg1 method:(id)arg2 file:(id)arg3 line:(unsigned long long)arg4;
|
|
@@ -38,7 +35,4 @@
|
|
|
38
35
|
- (void)logDebugMessage:(id)arg1;
|
|
39
36
|
- (id)initWithTestConfiguration:(id)arg1;
|
|
40
37
|
|
|
41
|
-
// Removed with iOS 10.3
|
|
42
|
-
@property(readonly) id <XCTestManager_ManagerInterface> managerProxy;
|
|
43
|
-
|
|
44
38
|
@end
|
|
@@ -28,8 +28,6 @@
|
|
|
28
28
|
- (void)_XCT_fetchParameterizedAttributeForElement:(XCAccessibilityElement *)arg1 attributes:(NSNumber *)arg2 parameter:(id)arg3 reply:(void (^)(id, NSError *))arg4;
|
|
29
29
|
- (void)_XCT_setAttribute:(NSNumber *)arg1 value:(id)arg2 element:(XCAccessibilityElement *)arg3 reply:(void (^)(BOOL, NSError *))arg4;
|
|
30
30
|
- (void)_XCT_fetchAttributesForElement:(XCAccessibilityElement *)arg1 attributes:(NSArray *)arg2 reply:(void (^)(NSDictionary *, NSError *))arg3;
|
|
31
|
-
// Deprecated with Xcode11
|
|
32
|
-
- (void)_XCT_snapshotForElement:(XCAccessibilityElement *)arg1 attributes:(NSArray *)arg2 parameters:(NSDictionary *)arg3 reply:(void (^)(XCElementSnapshot *, NSError *))arg4;
|
|
33
31
|
- (void)_XCT_terminateApplicationWithBundleID:(NSString *)arg1 completion:(void (^)(NSError *))arg2;
|
|
34
32
|
- (void)_XCT_performAccessibilityAction:(int)arg1 onElement:(XCAccessibilityElement *)arg2 withValue:(id)arg3 reply:(void (^)(NSError *))arg4;
|
|
35
33
|
- (void)_XCT_unregisterForAccessibilityNotification:(int)arg1 withRegistrationToken:(NSNumber *)arg2 reply:(void (^)(NSError *))arg3;
|
|
@@ -38,9 +38,6 @@
|
|
|
38
38
|
@property(nonatomic) pid_t processID; // @synthesize processID=_processID;
|
|
39
39
|
@property(readonly) XCAccessibilityElement *accessibilityElement;
|
|
40
40
|
|
|
41
|
-
/*! DO NOT USE DIRECTLY! Please use fb_applicationWithPID instead */
|
|
42
|
-
+ (instancetype)appWithPID:(pid_t)processID;
|
|
43
|
-
/*! DO NOT USE DIRECTLY! Please use fb_applicationWithPID instead */
|
|
44
41
|
+ (instancetype)applicationWithPID:(pid_t)processID;
|
|
45
42
|
/*! DO NOT USE DIRECTLY! Please use fb_activate instead */
|
|
46
43
|
- (void)activate;
|
|
@@ -17,7 +17,5 @@
|
|
|
17
17
|
- (void)pressLockButton;
|
|
18
18
|
- (void)holdHomeButtonForDuration:(double)arg1;
|
|
19
19
|
- (void)_silentPressButton:(long long)arg1;
|
|
20
|
-
// Removed in Xcode 10.2
|
|
21
|
-
- (void)_dispatchEventWithPage:(unsigned int)arg1 usage:(unsigned int)arg2 duration:(double)arg3;
|
|
22
20
|
|
|
23
21
|
@end
|
|
@@ -35,11 +35,6 @@
|
|
|
35
35
|
|
|
36
36
|
- (unsigned long long)traits;
|
|
37
37
|
- (void)resolveHandleUIInterruption:(BOOL)arg1;
|
|
38
|
-
// !!! These both methods are deprecated since Xcode 11.0
|
|
39
|
-
// before 10.2
|
|
40
|
-
- (void)resolve;
|
|
41
|
-
// XCode 10.2 .. Xcode 11.0
|
|
42
|
-
- (_Bool)resolve:(id *)arg1;
|
|
43
38
|
- (BOOL)waitForExistenceWithTimeout:(double)arg1;
|
|
44
39
|
- (BOOL)_waitForExistenceWithTimeout:(double)arg1;
|
|
45
40
|
- (BOOL)evaluatePredicateForExpectation:(id)arg1 debugMessage:(id *)arg2;
|
|
@@ -60,8 +60,6 @@
|
|
|
60
60
|
- (unsigned long long)_derivedExpressedType;
|
|
61
61
|
- (id)initWithInputQuery:(id)arg1 queryDescription:(id)arg2 filter:(CDUnknownBlockType)arg3;
|
|
62
62
|
|
|
63
|
-
// Deprecated since Xcode 11.0
|
|
64
|
-
- (XCElementSnapshot *)elementSnapshotForDebugDescription;
|
|
65
63
|
// Added since Xcode 11.0
|
|
66
64
|
- (XCElementSnapshot *)elementSnapshotForDebugDescriptionWithNoMatchesMessage:(id *)arg1;
|
|
67
65
|
// Added since Xcode 11.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
const os = require('os');
|
|
3
3
|
const { asyncify } = require('asyncbox');
|
|
4
|
-
const { logger, fs, mkdirp, zip } = require('appium
|
|
4
|
+
const { logger, fs, mkdirp, zip } = require('@appium/support');
|
|
5
5
|
const { exec } = require('teen_process');
|
|
6
6
|
const xcode = require('appium-xcode');
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
const axios = require('axios');
|
|
3
3
|
const { asyncify } = require('asyncbox');
|
|
4
|
-
const { logger, fs, mkdirp, net } = require('appium
|
|
4
|
+
const { logger, fs, mkdirp, net } = require('@appium/support');
|
|
5
5
|
const _ = require('lodash');
|
|
6
6
|
const B = require('bluebird');
|
|
7
7
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 54;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
@@ -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 */; };
|
|
@@ -378,23 +382,19 @@
|
|
|
378
382
|
715D5774224DE05400DA2D99 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
|
|
379
383
|
715D5775224DE05C00DA2D99 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
|
|
380
384
|
715D5776224DE06500DA2D99 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
|
|
381
|
-
71649EC92518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
382
|
-
71649ECA2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
383
|
-
71649ECB2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
384
|
-
71649ECC2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
385
|
-
71649ECD2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
386
|
-
71649ECE2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 71649EC82518C19C0087F212 /* IOSTestSettings.xcconfig */; };
|
|
387
385
|
716C9346224D540C004B8542 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
|
|
388
386
|
716C9347224D540C004B8542 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 716C9345224D540C004B8542 /* libxml2.tbd */; };
|
|
387
|
+
716C9DFA27315D21005AD475 /* FBReflectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DF827315D21005AD475 /* FBReflectionUtils.h */; };
|
|
388
|
+
716C9DFB27315D21005AD475 /* FBReflectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DF827315D21005AD475 /* FBReflectionUtils.h */; };
|
|
389
|
+
716C9DFC27315D21005AD475 /* FBReflectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DF927315D21005AD475 /* FBReflectionUtils.m */; };
|
|
390
|
+
716C9DFD27315D21005AD475 /* FBReflectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DF927315D21005AD475 /* FBReflectionUtils.m */; };
|
|
391
|
+
716C9E0027315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */; };
|
|
392
|
+
716C9E0127315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */; };
|
|
393
|
+
716C9E0227315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */; };
|
|
394
|
+
716C9E0327315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */; };
|
|
389
395
|
716E0BCE1E917E810087A825 /* NSString+FBXMLSafeString.h in Headers */ = {isa = PBXBuildFile; fileRef = 716E0BCC1E917E810087A825 /* NSString+FBXMLSafeString.h */; };
|
|
390
396
|
716E0BCF1E917E810087A825 /* NSString+FBXMLSafeString.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BCD1E917E810087A825 /* NSString+FBXMLSafeString.m */; };
|
|
391
397
|
716E0BD11E917F260087A825 /* FBXMLSafeStringTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BD01E917F260087A825 /* FBXMLSafeStringTests.m */; };
|
|
392
|
-
717C0D712518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
393
|
-
717C0D722518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
394
|
-
717C0D732518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
395
|
-
717C0D872518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
396
|
-
717C0D882518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
397
|
-
717C0D892518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
398
398
|
718226CA2587443700661B83 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C62587443600661B83 /* GCDAsyncUdpSocket.h */; };
|
|
399
399
|
718226CB2587443700661B83 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C62587443600661B83 /* GCDAsyncUdpSocket.h */; };
|
|
400
400
|
718226CC2587443700661B83 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C72587443600661B83 /* GCDAsyncSocket.h */; };
|
|
@@ -966,6 +966,8 @@
|
|
|
966
966
|
71414ED32670A1ED003A8C5D /* LRUCacheNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LRUCacheNode.m; sourceTree = "<group>"; };
|
|
967
967
|
714801D01FA9D9FA00DC5997 /* FBSDKVersionTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBSDKVersionTests.m; sourceTree = "<group>"; };
|
|
968
968
|
714CA3C61DC23186000F12C9 /* FBXPathIntegrationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBXPathIntegrationTests.m; sourceTree = "<group>"; };
|
|
969
|
+
714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBXMLGenerationOptions.h; sourceTree = "<group>"; };
|
|
970
|
+
714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBXMLGenerationOptions.m; sourceTree = "<group>"; };
|
|
969
971
|
714EAA0B2673FDFE005C5B47 /* FBCapabilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBCapabilities.h; sourceTree = "<group>"; };
|
|
970
972
|
714EAA0C2673FDFE005C5B47 /* FBCapabilities.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBCapabilities.m; sourceTree = "<group>"; };
|
|
971
973
|
7150348521A6DAD600A0F4BA /* FBImageUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBImageUtils.h; sourceTree = "<group>"; };
|
|
@@ -992,6 +994,10 @@
|
|
|
992
994
|
716C9343224D53DF004B8542 /* libAccessibility.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libAccessibility.tbd; path = usr/lib/libAccessibility.tbd; sourceTree = SDKROOT; };
|
|
993
995
|
716C9344224D53FC004B8542 /* XCTAutomationSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTAutomationSupport.framework; path = Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework; sourceTree = DEVELOPER_DIR; };
|
|
994
996
|
716C9345224D540C004B8542 /* libxml2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.tbd; path = usr/lib/libxml2.tbd; sourceTree = SDKROOT; };
|
|
997
|
+
716C9DF827315D21005AD475 /* FBReflectionUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBReflectionUtils.h; sourceTree = "<group>"; };
|
|
998
|
+
716C9DF927315D21005AD475 /* FBReflectionUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBReflectionUtils.m; sourceTree = "<group>"; };
|
|
999
|
+
716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCUIApplication+FBUIInterruptions.h"; sourceTree = "<group>"; };
|
|
1000
|
+
716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "XCUIApplication+FBUIInterruptions.m"; sourceTree = "<group>"; };
|
|
995
1001
|
716E0BCC1E917E810087A825 /* NSString+FBXMLSafeString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+FBXMLSafeString.h"; sourceTree = "<group>"; };
|
|
996
1002
|
716E0BCD1E917E810087A825 /* NSString+FBXMLSafeString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+FBXMLSafeString.m"; sourceTree = "<group>"; };
|
|
997
1003
|
716E0BD01E917F260087A825 /* FBXMLSafeStringTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBXMLSafeStringTests.m; sourceTree = "<group>"; };
|
|
@@ -1725,6 +1731,8 @@
|
|
|
1725
1731
|
AD6C269B1CF2494200F8B5FF /* XCUIApplication+FBHelpers.m */,
|
|
1726
1732
|
71C8E54F25399A6B008572C1 /* XCUIApplication+FBQuiescence.h */,
|
|
1727
1733
|
71C8E55025399A6B008572C1 /* XCUIApplication+FBQuiescence.m */,
|
|
1734
|
+
716C9DFE27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h */,
|
|
1735
|
+
716C9DFF27315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m */,
|
|
1728
1736
|
71D475C02538F5A8008D9401 /* XCUIApplicationProcess+FBQuiescence.h */,
|
|
1729
1737
|
71D475C12538F5A8008D9401 /* XCUIApplicationProcess+FBQuiescence.m */,
|
|
1730
1738
|
EEC9EED420064FAA00BC0D5B /* XCUICoordinate+FBFix.h */,
|
|
@@ -1899,6 +1907,8 @@
|
|
|
1899
1907
|
EEEC7C911F21F27A0053426C /* FBPredicate.m */,
|
|
1900
1908
|
71B155DD23080CA600646AFB /* FBProtocolHelpers.h */,
|
|
1901
1909
|
71B155DE23080CA600646AFB /* FBProtocolHelpers.m */,
|
|
1910
|
+
716C9DF827315D21005AD475 /* FBReflectionUtils.h */,
|
|
1911
|
+
716C9DF927315D21005AD475 /* FBReflectionUtils.m */,
|
|
1902
1912
|
EEE9B4701CD02B88009D2030 /* FBRunLoopSpinner.h */,
|
|
1903
1913
|
EEE9B4711CD02B88009D2030 /* FBRunLoopSpinner.m */,
|
|
1904
1914
|
EE9AB7911CAEDF0C008C271F /* FBRuntimeUtils.h */,
|
|
@@ -1926,6 +1936,8 @@
|
|
|
1926
1936
|
EE7E271B1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m */,
|
|
1927
1937
|
EE35AD791E3B80C000A02D78 /* FBXCTestDaemonsProxy.h */,
|
|
1928
1938
|
EE35AD7A1E3B80C000A02D78 /* FBXCTestDaemonsProxy.m */,
|
|
1939
|
+
714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */,
|
|
1940
|
+
714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */,
|
|
1929
1941
|
712A0C861DA3E55D007D02E5 /* FBXPath-Private.h */,
|
|
1930
1942
|
711084421DA3AA7500F913D6 /* FBXPath.h */,
|
|
1931
1943
|
711084431DA3AA7500F913D6 /* FBXPath.m */,
|
|
@@ -2247,6 +2259,7 @@
|
|
|
2247
2259
|
641EE6352240C5CA00173FCB /* XCUIElement+FBUtilities.h in Headers */,
|
|
2248
2260
|
641EE6362240C5CA00173FCB /* XCUIElement+FBScrolling.h in Headers */,
|
|
2249
2261
|
1357E297233D05240054BDB8 /* XCUIHitPointResult.h in Headers */,
|
|
2262
|
+
716C9DFB27315D21005AD475 /* FBReflectionUtils.h in Headers */,
|
|
2250
2263
|
641EE6372240C5CA00173FCB /* XCSourceCodeTreeNode.h in Headers */,
|
|
2251
2264
|
641EE6382240C5CA00173FCB /* XCPointerEventPath.h in Headers */,
|
|
2252
2265
|
641EE6392240C5CA00173FCB /* FBRouteRequest.h in Headers */,
|
|
@@ -2260,6 +2273,7 @@
|
|
|
2260
2273
|
641EE63E2240C5CA00173FCB /* _XCTestImplementation.h in Headers */,
|
|
2261
2274
|
641EE63F2240C5CA00173FCB /* FBTouchActionCommands.h in Headers */,
|
|
2262
2275
|
641EE6402240C5CA00173FCB /* FBTouchIDCommands.h in Headers */,
|
|
2276
|
+
714D88CD2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
|
|
2263
2277
|
641EE6412240C5CA00173FCB /* XCUIApplication.h in Headers */,
|
|
2264
2278
|
641EE6422240C5CA00173FCB /* FBCustomCommands.h in Headers */,
|
|
2265
2279
|
641EE6432240C5CA00173FCB /* _XCTestCaseInterruptionException.h in Headers */,
|
|
@@ -2312,6 +2326,7 @@
|
|
|
2312
2326
|
641EE66C2240C5CA00173FCB /* UIPinchGestureRecognizer-RecordingAdditions.h in Headers */,
|
|
2313
2327
|
641EE66D2240C5CA00173FCB /* XCTestManager_TestsInterface-Protocol.h in Headers */,
|
|
2314
2328
|
641EE66E2240C5CA00173FCB /* XCUIApplication+FBAlert.h in Headers */,
|
|
2329
|
+
716C9E0127315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */,
|
|
2315
2330
|
7182275C258744C300661B83 /* HTTPServer.h in Headers */,
|
|
2316
2331
|
641EE66F2240C5CA00173FCB /* XCDeviceEvent.h in Headers */,
|
|
2317
2332
|
641EE6702240C5CA00173FCB /* FBMathUtils.h in Headers */,
|
|
@@ -2485,6 +2500,7 @@
|
|
|
2485
2500
|
71F5BE4F252F14EB00EE9EBA /* FBExceptions.h in Headers */,
|
|
2486
2501
|
648C10AB22AAAD9C00B81B9A /* UIKeyboardImpl.h in Headers */,
|
|
2487
2502
|
EE35AD401E3B77D600A02D78 /* XCTest.h in Headers */,
|
|
2503
|
+
716C9E0027315EFF005AD475 /* XCUIApplication+FBUIInterruptions.h in Headers */,
|
|
2488
2504
|
719CD8F82126C78F00C7D0C2 /* FBAlertsMonitor.h in Headers */,
|
|
2489
2505
|
EE35AD241E3B77D600A02D78 /* XCAccessibilityElement.h in Headers */,
|
|
2490
2506
|
EE158AE41CBD456F00A3E3F0 /* FBSession.h in Headers */,
|
|
@@ -2646,6 +2662,7 @@
|
|
|
2646
2662
|
EE35AD261E3B77D600A02D78 /* XCApplicationMonitor_iOS.h in Headers */,
|
|
2647
2663
|
EE3A18661CDE734B00DE4205 /* FBKeyboard.h in Headers */,
|
|
2648
2664
|
AD6C269C1CF2494200F8B5FF /* XCUIApplication+FBHelpers.h in Headers */,
|
|
2665
|
+
714D88CC2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
|
|
2649
2666
|
EE35AD101E3B77D600A02D78 /* _XCTestObservationCenterImplementation.h in Headers */,
|
|
2650
2667
|
AD6C26981CF2481700F8B5FF /* XCUIDevice+FBHelpers.h in Headers */,
|
|
2651
2668
|
71A7EAF91E224648001DA4F2 /* FBClassChainQueryParser.h in Headers */,
|
|
@@ -2688,6 +2705,7 @@
|
|
|
2688
2705
|
EE35AD151E3B77D600A02D78 /* CDStructures.h in Headers */,
|
|
2689
2706
|
71E75E6D254824230099FC87 /* XCUIElementQuery+FBHelpers.h in Headers */,
|
|
2690
2707
|
EE35AD311E3B77D600A02D78 /* XCKeyboardLayout.h in Headers */,
|
|
2708
|
+
716C9DFA27315D21005AD475 /* FBReflectionUtils.h in Headers */,
|
|
2691
2709
|
E444DCB624913C220060D7EB /* RouteRequest.h in Headers */,
|
|
2692
2710
|
71F5BE23252E576C00EE9EBA /* XCUIElement+FBSwiping.h in Headers */,
|
|
2693
2711
|
718226CC2587443700661B83 /* GCDAsyncSocket.h in Headers */,
|
|
@@ -2899,7 +2917,7 @@
|
|
|
2899
2917
|
isa = PBXProject;
|
|
2900
2918
|
attributes = {
|
|
2901
2919
|
LastSwiftUpdateCheck = 1020;
|
|
2902
|
-
LastUpgradeCheck =
|
|
2920
|
+
LastUpgradeCheck = 1310;
|
|
2903
2921
|
ORGANIZATIONNAME = Facebook;
|
|
2904
2922
|
TargetAttributes = {
|
|
2905
2923
|
641EE2D92240BBE300173FCB = {
|
|
@@ -2930,13 +2948,12 @@
|
|
|
2930
2948
|
};
|
|
2931
2949
|
};
|
|
2932
2950
|
buildConfigurationList = 91F9DAE41B99DBC2001349B2 /* Build configuration list for PBXProject "WebDriverAgent" */;
|
|
2933
|
-
compatibilityVersion = "Xcode
|
|
2934
|
-
developmentRegion =
|
|
2951
|
+
compatibilityVersion = "Xcode 12.0";
|
|
2952
|
+
developmentRegion = en;
|
|
2935
2953
|
hasScannedForEncodings = 0;
|
|
2936
2954
|
knownRegions = (
|
|
2937
2955
|
en,
|
|
2938
2956
|
Base,
|
|
2939
|
-
English,
|
|
2940
2957
|
);
|
|
2941
2958
|
mainGroup = 91F9DAE01B99DBC2001349B2;
|
|
2942
2959
|
productRefGroup = 91F9DAEA1B99DBC2001349B2 /* Products */;
|
|
@@ -2962,8 +2979,6 @@
|
|
|
2962
2979
|
isa = PBXResourcesBuildPhase;
|
|
2963
2980
|
buildActionMask = 2147483647;
|
|
2964
2981
|
files = (
|
|
2965
|
-
717C0D722518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
2966
|
-
717C0D882518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
2967
2982
|
);
|
|
2968
2983
|
runOnlyForDeploymentPostprocessing = 0;
|
|
2969
2984
|
};
|
|
@@ -2971,8 +2986,6 @@
|
|
|
2971
2986
|
isa = PBXResourcesBuildPhase;
|
|
2972
2987
|
buildActionMask = 2147483647;
|
|
2973
2988
|
files = (
|
|
2974
|
-
717C0D712518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
2975
|
-
717C0D872518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
2976
2989
|
);
|
|
2977
2990
|
runOnlyForDeploymentPostprocessing = 0;
|
|
2978
2991
|
};
|
|
@@ -2980,9 +2993,6 @@
|
|
|
2980
2993
|
isa = PBXResourcesBuildPhase;
|
|
2981
2994
|
buildActionMask = 2147483647;
|
|
2982
2995
|
files = (
|
|
2983
|
-
717C0D892518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
2984
|
-
71649ECA2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
2985
|
-
717C0D732518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
2986
2996
|
);
|
|
2987
2997
|
runOnlyForDeploymentPostprocessing = 0;
|
|
2988
2998
|
};
|
|
@@ -2997,7 +3007,6 @@
|
|
|
2997
3007
|
isa = PBXResourcesBuildPhase;
|
|
2998
3008
|
buildActionMask = 2147483647;
|
|
2999
3009
|
files = (
|
|
3000
|
-
71649ECD2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3001
3010
|
);
|
|
3002
3011
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3003
3012
|
};
|
|
@@ -3005,7 +3014,6 @@
|
|
|
3005
3014
|
isa = PBXResourcesBuildPhase;
|
|
3006
3015
|
buildActionMask = 2147483647;
|
|
3007
3016
|
files = (
|
|
3008
|
-
71649ECC2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3009
3017
|
);
|
|
3010
3018
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3011
3019
|
};
|
|
@@ -3013,7 +3021,6 @@
|
|
|
3013
3021
|
isa = PBXResourcesBuildPhase;
|
|
3014
3022
|
buildActionMask = 2147483647;
|
|
3015
3023
|
files = (
|
|
3016
|
-
71649EC92518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3017
3024
|
);
|
|
3018
3025
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3019
3026
|
};
|
|
@@ -3022,7 +3029,6 @@
|
|
|
3022
3029
|
buildActionMask = 2147483647;
|
|
3023
3030
|
files = (
|
|
3024
3031
|
EE9B76941CF7997600275851 /* Main.storyboard in Resources */,
|
|
3025
|
-
71649ECE2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3026
3032
|
);
|
|
3027
3033
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3028
3034
|
};
|
|
@@ -3030,7 +3036,6 @@
|
|
|
3030
3036
|
isa = PBXResourcesBuildPhase;
|
|
3031
3037
|
buildActionMask = 2147483647;
|
|
3032
3038
|
files = (
|
|
3033
|
-
71649ECB2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3034
3039
|
);
|
|
3035
3040
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3036
3041
|
};
|
|
@@ -3082,6 +3087,7 @@
|
|
|
3082
3087
|
641EE5DC2240C5CA00173FCB /* XCUIApplication+FBAlert.m in Sources */,
|
|
3083
3088
|
641EE5DD2240C5CA00173FCB /* FBAppiumActionsSynthesizer.m in Sources */,
|
|
3084
3089
|
641EE70F2240CE4800173FCB /* FBTVNavigationTracker.m in Sources */,
|
|
3090
|
+
714D88CF2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
|
|
3085
3091
|
641EE5DE2240C5CA00173FCB /* XCUIApplication+FBTouchAction.m in Sources */,
|
|
3086
3092
|
641EE5DF2240C5CA00173FCB /* FBWebServer.m in Sources */,
|
|
3087
3093
|
641EE5E02240C5CA00173FCB /* FBTCPSocket.m in Sources */,
|
|
@@ -3120,6 +3126,7 @@
|
|
|
3120
3126
|
641EE5FD2240C5CA00173FCB /* FBBaseActionsSynthesizer.m in Sources */,
|
|
3121
3127
|
641EE5FE2240C5CA00173FCB /* XCUIElement+FBWebDriverAttributes.m in Sources */,
|
|
3122
3128
|
641EE5FF2240C5CA00173FCB /* XCUIElement+FBForceTouch.m in Sources */,
|
|
3129
|
+
716C9E0327315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */,
|
|
3123
3130
|
641EE6002240C5CA00173FCB /* FBTouchActionCommands.m in Sources */,
|
|
3124
3131
|
719DCF182601EAFB000E765F /* FBNotificationsHelper.m in Sources */,
|
|
3125
3132
|
714EAA102673FDFE005C5B47 /* FBCapabilities.m in Sources */,
|
|
@@ -3154,6 +3161,7 @@
|
|
|
3154
3161
|
641EE61B2240C5CA00173FCB /* FBPasteboard.m in Sources */,
|
|
3155
3162
|
641EE61C2240C5CA00173FCB /* FBAlert.m in Sources */,
|
|
3156
3163
|
718F49CB23087B040045FE8B /* FBCommandStatus.m in Sources */,
|
|
3164
|
+
716C9DFD27315D21005AD475 /* FBReflectionUtils.m in Sources */,
|
|
3157
3165
|
641EE61D2240C5CA00173FCB /* FBElementCommands.m in Sources */,
|
|
3158
3166
|
641EE61E2240C5CA00173FCB /* FBExceptionHandler.m in Sources */,
|
|
3159
3167
|
641EE61F2240C5CA00173FCB /* FBXCodeCompatibility.m in Sources */,
|
|
@@ -3231,6 +3239,7 @@
|
|
|
3231
3239
|
EE7E271F1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m in Sources */,
|
|
3232
3240
|
7155D704211DCEF400166C20 /* FBMjpegServer.m in Sources */,
|
|
3233
3241
|
EEDFE1221D9C06F800E6FFE5 /* XCUIDevice+FBHealthCheck.m in Sources */,
|
|
3242
|
+
714D88CE2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
|
|
3234
3243
|
E444DCB424913C220060D7EB /* RoutingHTTPServer.m in Sources */,
|
|
3235
3244
|
7140974E1FAE20EE008FB2C5 /* FBBaseActionsSynthesizer.m in Sources */,
|
|
3236
3245
|
EEE3764A1D59FAE900ED88DD /* XCUIElement+FBWebDriverAttributes.m in Sources */,
|
|
@@ -3253,6 +3262,7 @@
|
|
|
3253
3262
|
EE9B76A91CF7A43900275851 /* FBLogger.m in Sources */,
|
|
3254
3263
|
EE158ABB1CBD456F00A3E3F0 /* FBCustomCommands.m in Sources */,
|
|
3255
3264
|
AD6C26991CF2481700F8B5FF /* XCUIDevice+FBHelpers.m in Sources */,
|
|
3265
|
+
716C9E0227315EFF005AD475 /* XCUIApplication+FBUIInterruptions.m in Sources */,
|
|
3256
3266
|
EE6B64FE1D0F86EF00E85F5D /* XCTestPrivateSymbols.m in Sources */,
|
|
3257
3267
|
AD76723E1D6B7CC000610457 /* XCUIElement+FBTyping.m in Sources */,
|
|
3258
3268
|
EE158AAF1CBD456F00A3E3F0 /* XCUIElement+FBAccessibility.m in Sources */,
|
|
@@ -3265,6 +3275,7 @@
|
|
|
3265
3275
|
E444DCB224913C220060D7EB /* RoutingConnection.m in Sources */,
|
|
3266
3276
|
EE158AC11CBD456F00A3E3F0 /* FBFindElementCommands.m in Sources */,
|
|
3267
3277
|
EE7E271D1D06C69F001BEC7B /* FBDebugLogDelegateDecorator.m in Sources */,
|
|
3278
|
+
716C9DFC27315D21005AD475 /* FBReflectionUtils.m in Sources */,
|
|
3268
3279
|
71C8E55325399A6B008572C1 /* XCUIApplication+FBQuiescence.m in Sources */,
|
|
3269
3280
|
71414EDA2670A1EE003A8C5D /* LRUCacheNode.m in Sources */,
|
|
3270
3281
|
EE158AB91CBD456F00A3E3F0 /* FBAlertViewCommands.m in Sources */,
|
|
@@ -3794,6 +3805,7 @@
|
|
|
3794
3805
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
3795
3806
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
3796
3807
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
3808
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
3797
3809
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
3798
3810
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
3799
3811
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -3826,12 +3838,12 @@
|
|
|
3826
3838
|
"$(SDKROOT)/usr/include/libxml2",
|
|
3827
3839
|
"$(SRCROOT)/Modules",
|
|
3828
3840
|
);
|
|
3829
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
3841
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
3830
3842
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
3831
3843
|
ONLY_ACTIVE_ARCH = YES;
|
|
3832
3844
|
SDKROOT = iphoneos;
|
|
3833
3845
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
3834
|
-
TVOS_DEPLOYMENT_TARGET =
|
|
3846
|
+
TVOS_DEPLOYMENT_TARGET = 12.0;
|
|
3835
3847
|
VALIDATE_WORKSPACE = NO;
|
|
3836
3848
|
};
|
|
3837
3849
|
name = Debug;
|
|
@@ -3860,6 +3872,7 @@
|
|
|
3860
3872
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
3861
3873
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
3862
3874
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
3875
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
3863
3876
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
3864
3877
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
3865
3878
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -3886,11 +3899,11 @@
|
|
|
3886
3899
|
"$(SDKROOT)/usr/include/libxml2",
|
|
3887
3900
|
"$(SRCROOT)/Modules",
|
|
3888
3901
|
);
|
|
3889
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
3902
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
3890
3903
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
3891
3904
|
SDKROOT = iphoneos;
|
|
3892
3905
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
3893
|
-
TVOS_DEPLOYMENT_TARGET =
|
|
3906
|
+
TVOS_DEPLOYMENT_TARGET = 12.0;
|
|
3894
3907
|
VALIDATE_PRODUCT = YES;
|
|
3895
3908
|
VALIDATE_WORKSPACE = NO;
|
|
3896
3909
|
};
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<Scheme
|
|
3
|
-
LastUpgradeVersion = "
|
|
3
|
+
LastUpgradeVersion = "1310"
|
|
4
4
|
version = "1.3">
|
|
5
5
|
<BuildAction
|
|
6
6
|
parallelizeBuildables = "YES"
|
|
@@ -27,8 +27,6 @@
|
|
|
27
27
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
28
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
29
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
</Testables>
|
|
32
30
|
<MacroExpansion>
|
|
33
31
|
<BuildableReference
|
|
34
32
|
BuildableIdentifier = "primary"
|
|
@@ -38,8 +36,8 @@
|
|
|
38
36
|
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
39
37
|
</BuildableReference>
|
|
40
38
|
</MacroExpansion>
|
|
41
|
-
<
|
|
42
|
-
</
|
|
39
|
+
<Testables>
|
|
40
|
+
</Testables>
|
|
43
41
|
</TestAction>
|
|
44
42
|
<LaunchAction
|
|
45
43
|
buildConfiguration = "Debug"
|
|
@@ -61,8 +59,6 @@
|
|
|
61
59
|
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
62
60
|
</BuildableReference>
|
|
63
61
|
</BuildableProductRunnable>
|
|
64
|
-
<AdditionalOptions>
|
|
65
|
-
</AdditionalOptions>
|
|
66
62
|
</LaunchAction>
|
|
67
63
|
<ProfileAction
|
|
68
64
|
buildConfiguration = "Release"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<Scheme
|
|
3
|
-
LastUpgradeVersion = "
|
|
3
|
+
LastUpgradeVersion = "1310"
|
|
4
4
|
version = "1.3">
|
|
5
5
|
<BuildAction
|
|
6
6
|
parallelizeBuildables = "YES"
|
|
@@ -27,6 +27,15 @@
|
|
|
27
27
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
28
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
29
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<MacroExpansion>
|
|
31
|
+
<BuildableReference
|
|
32
|
+
BuildableIdentifier = "primary"
|
|
33
|
+
BlueprintIdentifier = "EE158A981CBD452B00A3E3F0"
|
|
34
|
+
BuildableName = "WebDriverAgentLib.framework"
|
|
35
|
+
BlueprintName = "WebDriverAgentLib"
|
|
36
|
+
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
37
|
+
</BuildableReference>
|
|
38
|
+
</MacroExpansion>
|
|
30
39
|
<Testables>
|
|
31
40
|
<TestableReference
|
|
32
41
|
skipped = "NO">
|
|
@@ -69,17 +78,6 @@
|
|
|
69
78
|
</BuildableReference>
|
|
70
79
|
</TestableReference>
|
|
71
80
|
</Testables>
|
|
72
|
-
<MacroExpansion>
|
|
73
|
-
<BuildableReference
|
|
74
|
-
BuildableIdentifier = "primary"
|
|
75
|
-
BlueprintIdentifier = "EE158A981CBD452B00A3E3F0"
|
|
76
|
-
BuildableName = "WebDriverAgentLib.framework"
|
|
77
|
-
BlueprintName = "WebDriverAgentLib"
|
|
78
|
-
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
79
|
-
</BuildableReference>
|
|
80
|
-
</MacroExpansion>
|
|
81
|
-
<AdditionalOptions>
|
|
82
|
-
</AdditionalOptions>
|
|
83
81
|
</TestAction>
|
|
84
82
|
<LaunchAction
|
|
85
83
|
buildConfiguration = "Debug"
|
|
@@ -100,8 +98,6 @@
|
|
|
100
98
|
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
101
99
|
</BuildableReference>
|
|
102
100
|
</MacroExpansion>
|
|
103
|
-
<AdditionalOptions>
|
|
104
|
-
</AdditionalOptions>
|
|
105
101
|
</LaunchAction>
|
|
106
102
|
<ProfileAction
|
|
107
103
|
buildConfiguration = "Release"
|