appium-webdriveragent 3.15.1 → 4.1.3
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/build.sh +7 -2
- package/Scripts/fetch-prebuilt-wda.js +1 -1
- package/WebDriverAgent.xcodeproj/project.pbxproj +22 -33
- 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/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h +9 -15
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +4 -22
- 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/FBFailureProofTestCase.m +7 -10
- 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 +15 -37
- 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-Runner.app.zip +0 -0
- package/WebDriverAgentTests/IntegrationTests/FBAlertTests.m +5 -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 +6 -6
- package/build/lib/check-dependencies.js +4 -4
- 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 +25 -25
- package/build/lib/webdriveragent.js +17 -17
- 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/npm-shrinkwrap.json +2208 -0
- package/package.json +13 -12
- package/PrivateHeaders/.DS_Store +0 -0
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/elf.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/xcuserdata/elf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -91
- package/WebDriverAgent.xcodeproj/xcuserdata/elf.xcuserdatad/xcschemes/xcschememanagement.plist +0 -59
- package/WebDriverAgentLib/.DS_Store +0 -0
- package/WebDriverAgentLib/Utilities/LRUCache/.DS_Store +0 -0
- package/WebDriverAgentLib/Vendor/.DS_Store +0 -0
- package/WebDriverAgentRunner/.DS_Store +0 -0
- package/WebDriverAgentTests/IntegrationApp/Resources/.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
|
|
package/Scripts/build.sh
CHANGED
|
@@ -86,10 +86,15 @@ function xcbuild() {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
function fastlane_test() {
|
|
89
|
+
if ! command -v fastlane $> /dev/null ; then
|
|
90
|
+
echo "Please install fastlane with 'gem install fastlane' or 'bundle install'"
|
|
91
|
+
exit 1
|
|
92
|
+
fi
|
|
93
|
+
|
|
89
94
|
if [[ -n "$XC_DESTINATION" ]]; then
|
|
90
|
-
SDK="$XC_SDK" DEST="$XC_DESTINATION" SCHEME="$1"
|
|
95
|
+
SDK="$XC_SDK" DEST="$XC_DESTINATION" SCHEME="$1" fastlane test
|
|
91
96
|
else
|
|
92
|
-
SDK="$XC_SDK" SCHEME="$1"
|
|
97
|
+
SDK="$XC_SDK" SCHEME="$1" fastlane test
|
|
93
98
|
fi
|
|
94
99
|
}
|
|
95
100
|
|
|
@@ -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,12 +382,6 @@
|
|
|
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 */; };
|
|
389
387
|
716C9DFA27315D21005AD475 /* FBReflectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 716C9DF827315D21005AD475 /* FBReflectionUtils.h */; };
|
|
@@ -397,12 +395,6 @@
|
|
|
397
395
|
716E0BCE1E917E810087A825 /* NSString+FBXMLSafeString.h in Headers */ = {isa = PBXBuildFile; fileRef = 716E0BCC1E917E810087A825 /* NSString+FBXMLSafeString.h */; };
|
|
398
396
|
716E0BCF1E917E810087A825 /* NSString+FBXMLSafeString.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BCD1E917E810087A825 /* NSString+FBXMLSafeString.m */; };
|
|
399
397
|
716E0BD11E917F260087A825 /* FBXMLSafeStringTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E0BD01E917F260087A825 /* FBXMLSafeStringTests.m */; };
|
|
400
|
-
717C0D712518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
401
|
-
717C0D722518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
402
|
-
717C0D732518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */; };
|
|
403
|
-
717C0D872518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
404
|
-
717C0D882518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
405
|
-
717C0D892518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */; };
|
|
406
398
|
718226CA2587443700661B83 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C62587443600661B83 /* GCDAsyncUdpSocket.h */; };
|
|
407
399
|
718226CB2587443700661B83 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C62587443600661B83 /* GCDAsyncUdpSocket.h */; };
|
|
408
400
|
718226CC2587443700661B83 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 718226C72587443600661B83 /* GCDAsyncSocket.h */; };
|
|
@@ -974,6 +966,8 @@
|
|
|
974
966
|
71414ED32670A1ED003A8C5D /* LRUCacheNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LRUCacheNode.m; sourceTree = "<group>"; };
|
|
975
967
|
714801D01FA9D9FA00DC5997 /* FBSDKVersionTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBSDKVersionTests.m; sourceTree = "<group>"; };
|
|
976
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>"; };
|
|
977
971
|
714EAA0B2673FDFE005C5B47 /* FBCapabilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBCapabilities.h; sourceTree = "<group>"; };
|
|
978
972
|
714EAA0C2673FDFE005C5B47 /* FBCapabilities.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBCapabilities.m; sourceTree = "<group>"; };
|
|
979
973
|
7150348521A6DAD600A0F4BA /* FBImageUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBImageUtils.h; sourceTree = "<group>"; };
|
|
@@ -1942,6 +1936,8 @@
|
|
|
1942
1936
|
EE7E271B1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m */,
|
|
1943
1937
|
EE35AD791E3B80C000A02D78 /* FBXCTestDaemonsProxy.h */,
|
|
1944
1938
|
EE35AD7A1E3B80C000A02D78 /* FBXCTestDaemonsProxy.m */,
|
|
1939
|
+
714D88CA2733FB970074A925 /* FBXMLGenerationOptions.h */,
|
|
1940
|
+
714D88CB2733FB970074A925 /* FBXMLGenerationOptions.m */,
|
|
1945
1941
|
712A0C861DA3E55D007D02E5 /* FBXPath-Private.h */,
|
|
1946
1942
|
711084421DA3AA7500F913D6 /* FBXPath.h */,
|
|
1947
1943
|
711084431DA3AA7500F913D6 /* FBXPath.m */,
|
|
@@ -2277,6 +2273,7 @@
|
|
|
2277
2273
|
641EE63E2240C5CA00173FCB /* _XCTestImplementation.h in Headers */,
|
|
2278
2274
|
641EE63F2240C5CA00173FCB /* FBTouchActionCommands.h in Headers */,
|
|
2279
2275
|
641EE6402240C5CA00173FCB /* FBTouchIDCommands.h in Headers */,
|
|
2276
|
+
714D88CD2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
|
|
2280
2277
|
641EE6412240C5CA00173FCB /* XCUIApplication.h in Headers */,
|
|
2281
2278
|
641EE6422240C5CA00173FCB /* FBCustomCommands.h in Headers */,
|
|
2282
2279
|
641EE6432240C5CA00173FCB /* _XCTestCaseInterruptionException.h in Headers */,
|
|
@@ -2665,6 +2662,7 @@
|
|
|
2665
2662
|
EE35AD261E3B77D600A02D78 /* XCApplicationMonitor_iOS.h in Headers */,
|
|
2666
2663
|
EE3A18661CDE734B00DE4205 /* FBKeyboard.h in Headers */,
|
|
2667
2664
|
AD6C269C1CF2494200F8B5FF /* XCUIApplication+FBHelpers.h in Headers */,
|
|
2665
|
+
714D88CC2733FB970074A925 /* FBXMLGenerationOptions.h in Headers */,
|
|
2668
2666
|
EE35AD101E3B77D600A02D78 /* _XCTestObservationCenterImplementation.h in Headers */,
|
|
2669
2667
|
AD6C26981CF2481700F8B5FF /* XCUIDevice+FBHelpers.h in Headers */,
|
|
2670
2668
|
71A7EAF91E224648001DA4F2 /* FBClassChainQueryParser.h in Headers */,
|
|
@@ -2919,7 +2917,7 @@
|
|
|
2919
2917
|
isa = PBXProject;
|
|
2920
2918
|
attributes = {
|
|
2921
2919
|
LastSwiftUpdateCheck = 1020;
|
|
2922
|
-
LastUpgradeCheck =
|
|
2920
|
+
LastUpgradeCheck = 1310;
|
|
2923
2921
|
ORGANIZATIONNAME = Facebook;
|
|
2924
2922
|
TargetAttributes = {
|
|
2925
2923
|
641EE2D92240BBE300173FCB = {
|
|
@@ -2950,13 +2948,12 @@
|
|
|
2950
2948
|
};
|
|
2951
2949
|
};
|
|
2952
2950
|
buildConfigurationList = 91F9DAE41B99DBC2001349B2 /* Build configuration list for PBXProject "WebDriverAgent" */;
|
|
2953
|
-
compatibilityVersion = "Xcode
|
|
2954
|
-
developmentRegion =
|
|
2951
|
+
compatibilityVersion = "Xcode 12.0";
|
|
2952
|
+
developmentRegion = en;
|
|
2955
2953
|
hasScannedForEncodings = 0;
|
|
2956
2954
|
knownRegions = (
|
|
2957
2955
|
en,
|
|
2958
2956
|
Base,
|
|
2959
|
-
English,
|
|
2960
2957
|
);
|
|
2961
2958
|
mainGroup = 91F9DAE01B99DBC2001349B2;
|
|
2962
2959
|
productRefGroup = 91F9DAEA1B99DBC2001349B2 /* Products */;
|
|
@@ -2982,8 +2979,6 @@
|
|
|
2982
2979
|
isa = PBXResourcesBuildPhase;
|
|
2983
2980
|
buildActionMask = 2147483647;
|
|
2984
2981
|
files = (
|
|
2985
|
-
717C0D722518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
2986
|
-
717C0D882518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
2987
2982
|
);
|
|
2988
2983
|
runOnlyForDeploymentPostprocessing = 0;
|
|
2989
2984
|
};
|
|
@@ -2991,8 +2986,6 @@
|
|
|
2991
2986
|
isa = PBXResourcesBuildPhase;
|
|
2992
2987
|
buildActionMask = 2147483647;
|
|
2993
2988
|
files = (
|
|
2994
|
-
717C0D712518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
2995
|
-
717C0D872518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
2996
2989
|
);
|
|
2997
2990
|
runOnlyForDeploymentPostprocessing = 0;
|
|
2998
2991
|
};
|
|
@@ -3000,9 +2993,6 @@
|
|
|
3000
2993
|
isa = PBXResourcesBuildPhase;
|
|
3001
2994
|
buildActionMask = 2147483647;
|
|
3002
2995
|
files = (
|
|
3003
|
-
717C0D892518ED7000CAA6EC /* TVOSTestSettings.xcconfig in Resources */,
|
|
3004
|
-
71649ECA2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3005
|
-
717C0D732518ED2800CAA6EC /* TVOSSettings.xcconfig in Resources */,
|
|
3006
2996
|
);
|
|
3007
2997
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3008
2998
|
};
|
|
@@ -3017,7 +3007,6 @@
|
|
|
3017
3007
|
isa = PBXResourcesBuildPhase;
|
|
3018
3008
|
buildActionMask = 2147483647;
|
|
3019
3009
|
files = (
|
|
3020
|
-
71649ECD2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3021
3010
|
);
|
|
3022
3011
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3023
3012
|
};
|
|
@@ -3025,7 +3014,6 @@
|
|
|
3025
3014
|
isa = PBXResourcesBuildPhase;
|
|
3026
3015
|
buildActionMask = 2147483647;
|
|
3027
3016
|
files = (
|
|
3028
|
-
71649ECC2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3029
3017
|
);
|
|
3030
3018
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3031
3019
|
};
|
|
@@ -3033,7 +3021,6 @@
|
|
|
3033
3021
|
isa = PBXResourcesBuildPhase;
|
|
3034
3022
|
buildActionMask = 2147483647;
|
|
3035
3023
|
files = (
|
|
3036
|
-
71649EC92518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3037
3024
|
);
|
|
3038
3025
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3039
3026
|
};
|
|
@@ -3042,7 +3029,6 @@
|
|
|
3042
3029
|
buildActionMask = 2147483647;
|
|
3043
3030
|
files = (
|
|
3044
3031
|
EE9B76941CF7997600275851 /* Main.storyboard in Resources */,
|
|
3045
|
-
71649ECE2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3046
3032
|
);
|
|
3047
3033
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3048
3034
|
};
|
|
@@ -3050,7 +3036,6 @@
|
|
|
3050
3036
|
isa = PBXResourcesBuildPhase;
|
|
3051
3037
|
buildActionMask = 2147483647;
|
|
3052
3038
|
files = (
|
|
3053
|
-
71649ECB2518C19C0087F212 /* IOSTestSettings.xcconfig in Resources */,
|
|
3054
3039
|
);
|
|
3055
3040
|
runOnlyForDeploymentPostprocessing = 0;
|
|
3056
3041
|
};
|
|
@@ -3102,6 +3087,7 @@
|
|
|
3102
3087
|
641EE5DC2240C5CA00173FCB /* XCUIApplication+FBAlert.m in Sources */,
|
|
3103
3088
|
641EE5DD2240C5CA00173FCB /* FBAppiumActionsSynthesizer.m in Sources */,
|
|
3104
3089
|
641EE70F2240CE4800173FCB /* FBTVNavigationTracker.m in Sources */,
|
|
3090
|
+
714D88CF2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
|
|
3105
3091
|
641EE5DE2240C5CA00173FCB /* XCUIApplication+FBTouchAction.m in Sources */,
|
|
3106
3092
|
641EE5DF2240C5CA00173FCB /* FBWebServer.m in Sources */,
|
|
3107
3093
|
641EE5E02240C5CA00173FCB /* FBTCPSocket.m in Sources */,
|
|
@@ -3253,6 +3239,7 @@
|
|
|
3253
3239
|
EE7E271F1D06C69F001BEC7B /* FBXCTestCaseImplementationFailureHoldingProxy.m in Sources */,
|
|
3254
3240
|
7155D704211DCEF400166C20 /* FBMjpegServer.m in Sources */,
|
|
3255
3241
|
EEDFE1221D9C06F800E6FFE5 /* XCUIDevice+FBHealthCheck.m in Sources */,
|
|
3242
|
+
714D88CE2733FB970074A925 /* FBXMLGenerationOptions.m in Sources */,
|
|
3256
3243
|
E444DCB424913C220060D7EB /* RoutingHTTPServer.m in Sources */,
|
|
3257
3244
|
7140974E1FAE20EE008FB2C5 /* FBBaseActionsSynthesizer.m in Sources */,
|
|
3258
3245
|
EEE3764A1D59FAE900ED88DD /* XCUIElement+FBWebDriverAttributes.m in Sources */,
|
|
@@ -3818,6 +3805,7 @@
|
|
|
3818
3805
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
3819
3806
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
3820
3807
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
3808
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
3821
3809
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
3822
3810
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
3823
3811
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -3850,12 +3838,12 @@
|
|
|
3850
3838
|
"$(SDKROOT)/usr/include/libxml2",
|
|
3851
3839
|
"$(SRCROOT)/Modules",
|
|
3852
3840
|
);
|
|
3853
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
3841
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
3854
3842
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
3855
3843
|
ONLY_ACTIVE_ARCH = YES;
|
|
3856
3844
|
SDKROOT = iphoneos;
|
|
3857
3845
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
3858
|
-
TVOS_DEPLOYMENT_TARGET =
|
|
3846
|
+
TVOS_DEPLOYMENT_TARGET = 12.0;
|
|
3859
3847
|
VALIDATE_WORKSPACE = NO;
|
|
3860
3848
|
};
|
|
3861
3849
|
name = Debug;
|
|
@@ -3884,6 +3872,7 @@
|
|
|
3884
3872
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
3885
3873
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
3886
3874
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
3875
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
3887
3876
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
3888
3877
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
3889
3878
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -3910,11 +3899,11 @@
|
|
|
3910
3899
|
"$(SDKROOT)/usr/include/libxml2",
|
|
3911
3900
|
"$(SRCROOT)/Modules",
|
|
3912
3901
|
);
|
|
3913
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
3902
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
3914
3903
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
3915
3904
|
SDKROOT = iphoneos;
|
|
3916
3905
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
3917
|
-
TVOS_DEPLOYMENT_TARGET =
|
|
3906
|
+
TVOS_DEPLOYMENT_TARGET = 12.0;
|
|
3918
3907
|
VALIDATE_PRODUCT = YES;
|
|
3919
3908
|
VALIDATE_WORKSPACE = NO;
|
|
3920
3909
|
};
|
|
@@ -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"
|
|
@@ -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 = "641EE5D52240C5CA00173FCB"
|
|
34
|
+
BuildableName = "WebDriverAgentLib_tvOS.framework"
|
|
35
|
+
BlueprintName = "WebDriverAgentLib_tvOS"
|
|
36
|
+
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
37
|
+
</BuildableReference>
|
|
38
|
+
</MacroExpansion>
|
|
30
39
|
<Testables>
|
|
31
40
|
<TestableReference
|
|
32
41
|
skipped = "NO">
|
|
@@ -39,17 +48,6 @@
|
|
|
39
48
|
</BuildableReference>
|
|
40
49
|
</TestableReference>
|
|
41
50
|
</Testables>
|
|
42
|
-
<MacroExpansion>
|
|
43
|
-
<BuildableReference
|
|
44
|
-
BuildableIdentifier = "primary"
|
|
45
|
-
BlueprintIdentifier = "641EE5D52240C5CA00173FCB"
|
|
46
|
-
BuildableName = "WebDriverAgentLib_tvOS.framework"
|
|
47
|
-
BlueprintName = "WebDriverAgentLib_tvOS"
|
|
48
|
-
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
49
|
-
</BuildableReference>
|
|
50
|
-
</MacroExpansion>
|
|
51
|
-
<AdditionalOptions>
|
|
52
|
-
</AdditionalOptions>
|
|
53
51
|
</TestAction>
|
|
54
52
|
<LaunchAction
|
|
55
53
|
buildConfiguration = "Debug"
|
|
@@ -70,8 +68,6 @@
|
|
|
70
68
|
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
71
69
|
</BuildableReference>
|
|
72
70
|
</MacroExpansion>
|
|
73
|
-
<AdditionalOptions>
|
|
74
|
-
</AdditionalOptions>
|
|
75
71
|
</LaunchAction>
|
|
76
72
|
<ProfileAction
|
|
77
73
|
buildConfiguration = "Release"
|
package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner-nodebug.xcscheme
CHANGED
|
@@ -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"
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
buildConfiguration = "Debug"
|
|
27
27
|
selectedDebuggerIdentifier = ""
|
|
28
28
|
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
30
|
+
systemAttachmentLifetime = "keepNever">
|
|
31
31
|
<Testables>
|
|
32
32
|
<TestableReference
|
|
33
33
|
skipped = "NO">
|
|
@@ -40,8 +40,6 @@
|
|
|
40
40
|
</BuildableReference>
|
|
41
41
|
</TestableReference>
|
|
42
42
|
</Testables>
|
|
43
|
-
<AdditionalOptions>
|
|
44
|
-
</AdditionalOptions>
|
|
45
43
|
</TestAction>
|
|
46
44
|
<LaunchAction
|
|
47
45
|
buildConfiguration = "Debug"
|
|
@@ -62,8 +60,6 @@
|
|
|
62
60
|
ReferencedContainer = "container:WebDriverAgent.xcodeproj">
|
|
63
61
|
</BuildableReference>
|
|
64
62
|
</MacroExpansion>
|
|
65
|
-
<AdditionalOptions>
|
|
66
|
-
</AdditionalOptions>
|
|
67
63
|
</LaunchAction>
|
|
68
64
|
<ProfileAction
|
|
69
65
|
buildConfiguration = "Release"
|