appium-webdriveragent 4.10.0 → 4.10.2
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/CHANGELOG.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
## [4.10.2](https://github.com/appium/WebDriverAgent/compare/v4.10.1...v4.10.2) (2022-11-06)
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
if (nil == result) {
|
|
227
227
|
return FBResponseWithUnknownError(error);
|
|
228
228
|
}
|
|
229
|
-
return FBResponseWithObject([result base64EncodedStringWithOptions:
|
|
229
|
+
return FBResponseWithObject([result base64EncodedStringWithOptions:0]);
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
+ (id<FBResponsePayload>)handleGetBatteryInfo:(FBRouteRequest *)request
|
|
@@ -596,7 +596,7 @@
|
|
|
596
596
|
return FBResponseWithStatus([FBCommandStatus unableToCaptureScreenErrorWithMessage:error.description
|
|
597
597
|
traceback:nil]);
|
|
598
598
|
}
|
|
599
|
-
NSString *screenshot = [screenshotData base64EncodedStringWithOptions:
|
|
599
|
+
NSString *screenshot = [screenshotData base64EncodedStringWithOptions:0];
|
|
600
600
|
return FBResponseWithObject(screenshot);
|
|
601
601
|
}
|
|
602
602
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
if (nil == screenshotData) {
|
|
35
35
|
return FBResponseWithStatus([FBCommandStatus unableToCaptureScreenErrorWithMessage:error.description traceback:nil]);
|
|
36
36
|
}
|
|
37
|
-
NSString *screenshot = [screenshotData base64EncodedStringWithOptions:
|
|
37
|
+
NSString *screenshot = [screenshotData base64EncodedStringWithOptions:0];
|
|
38
38
|
return FBResponseWithObject(screenshot);
|
|
39
39
|
}
|
|
40
40
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-webdriveragent",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.2",
|
|
4
4
|
"description": "Package bundling WebDriverAgent",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
62
62
|
"@babel/preset-env": "^7.18.10",
|
|
63
63
|
"@babel/register": "^7.18.9",
|
|
64
|
+
"@semantic-release/changelog": "^6.0.1",
|
|
64
65
|
"@semantic-release/git": "^10.0.1",
|
|
65
66
|
"babel-plugin-source-map-support": "^2.2.0",
|
|
66
67
|
"appium-xcode": "^4.0.1",
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
"WebDriverAgentRunner",
|
|
110
111
|
"WebDriverAgentTests",
|
|
111
112
|
"XCTWebDriverAgentLib",
|
|
112
|
-
"WebDriverAgentRunner-Runner.app.zip"
|
|
113
|
+
"WebDriverAgentRunner-Runner.app.zip",
|
|
114
|
+
"CHANGELOG.md"
|
|
113
115
|
]
|
|
114
116
|
}
|