appium-webdriveragent 3.14.0 → 4.0.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/Scripts/build-webdriveragent.js +1 -1
- package/Scripts/fetch-prebuilt-wda.js +1 -1
- package/WebDriverAgent.xcodeproj/project.pbxproj +38 -2
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/elf.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/xcuserdata/elf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +91 -0
- package/WebDriverAgent.xcodeproj/xcuserdata/{kazuaki.xcuserdatad → elf.xcuserdatad}/xcschemes/xcschememanagement.plist +12 -35
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h +9 -6
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +4 -6
- package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.h +23 -0
- package/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.m +32 -0
- package/WebDriverAgentLib/Commands/FBAlertViewCommands.m +6 -6
- package/WebDriverAgentLib/Commands/FBDebugCommands.m +6 -3
- package/WebDriverAgentLib/FBAlert.m +1 -0
- package/WebDriverAgentLib/Utilities/FBConfiguration.h +5 -0
- package/WebDriverAgentLib/Utilities/FBConfiguration.m +6 -0
- package/WebDriverAgentLib/Utilities/FBReflectionUtils.h +24 -0
- package/WebDriverAgentLib/Utilities/FBReflectionUtils.m +32 -0
- package/WebDriverAgentLib/Utilities/FBScreen.m +3 -1
- package/WebDriverAgentLib/Utilities/FBXCAXClientProxy.m +5 -23
- 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/lib/check-dependencies.js +3 -3
- package/build/lib/logger.js +3 -3
- package/build/lib/no-session-proxy.js +3 -3
- package/build/lib/utils.js +17 -17
- package/build/lib/webdriveragent.js +16 -16
- package/build/lib/xcodebuild.js +5 -5
- package/lib/check-dependencies.js +1 -1
- package/lib/logger.js +1 -1
- package/lib/no-session-proxy.js +1 -1
- package/lib/utils.js +3 -2
- package/lib/webdriveragent.js +2 -2
- package/lib/xcodebuild.js +1 -1
- package/package.json +10 -11
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/WorkspaceSettings.xcsettings +0 -20
- package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -1979
- package/WebDriverAgentLib/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-webdriveragent",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Package bundling WebDriverAgent",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -43,32 +43,31 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/appium/WebDriverAgent#readme",
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"appium
|
|
47
|
-
"appium-
|
|
48
|
-
"appium-
|
|
46
|
+
"@appium/gulp-plugins": "^6.0.0",
|
|
47
|
+
"@appium/eslint-config-appium": "^5.0.0",
|
|
48
|
+
"@appium/test-support": "^1.0.0",
|
|
49
|
+
"appium-xcode": "^4.0.0",
|
|
49
50
|
"chai": "^4.2.0",
|
|
50
51
|
"chai-as-promised": "^7.1.1",
|
|
51
|
-
"eslint-config-appium": "^4.0.1",
|
|
52
52
|
"glob": "^7.1.0",
|
|
53
53
|
"gulp": "^4.0.2",
|
|
54
54
|
"ios-uicatalog": "^3.5.0",
|
|
55
55
|
"mocha": "^9.0.0",
|
|
56
56
|
"pre-commit": "^1.2.2",
|
|
57
|
-
"sinon": "^
|
|
58
|
-
"wd": "^1.11.4"
|
|
57
|
+
"sinon": "^12.0.0"
|
|
59
58
|
},
|
|
60
59
|
"dependencies": {
|
|
60
|
+
"@appium/base-driver": "^8.0.0",
|
|
61
|
+
"@appium/support": "^2.55.3",
|
|
61
62
|
"@babel/runtime": "^7.0.0",
|
|
62
|
-
"appium-
|
|
63
|
-
"appium-ios-simulator": "^3.14.0",
|
|
64
|
-
"appium-support": "^2.46.0",
|
|
63
|
+
"appium-ios-simulator": "^4.0.0",
|
|
65
64
|
"async-lock": "^1.0.0",
|
|
66
65
|
"asyncbox": "^2.5.3",
|
|
67
66
|
"axios": "^0.x",
|
|
68
67
|
"bluebird": "^3.5.5",
|
|
69
68
|
"lodash": "^4.17.11",
|
|
70
69
|
"node-simctl": "^6.0.2",
|
|
71
|
-
"source-map-support": "^0.
|
|
70
|
+
"source-map-support": "^0.x",
|
|
72
71
|
"teen_process": "^1.14.1"
|
|
73
72
|
},
|
|
74
73
|
"files": [
|
|
Binary file
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>BuildLocationStyle</key>
|
|
6
|
-
<string>UseAppPreferences</string>
|
|
7
|
-
<key>CustomBuildLocationType</key>
|
|
8
|
-
<string>RelativeToDerivedData</string>
|
|
9
|
-
<key>DerivedDataLocationStyle</key>
|
|
10
|
-
<string>Default</string>
|
|
11
|
-
<key>EnabledFullIndexStoreVisibility</key>
|
|
12
|
-
<false/>
|
|
13
|
-
<key>IssueFilterStyle</key>
|
|
14
|
-
<string>ShowActiveSchemeOnly</string>
|
|
15
|
-
<key>LiveSourceIssuesEnabled</key>
|
|
16
|
-
<true/>
|
|
17
|
-
<key>ShowSharedSchemesAutomaticallyEnabled</key>
|
|
18
|
-
<true/>
|
|
19
|
-
</dict>
|
|
20
|
-
</plist>
|