appium-webdriveragent 5.5.2 → 5.6.1
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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.6.1](https://github.com/appium/WebDriverAgent/compare/v5.6.0...v5.6.1) (2023-08-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* **deps-dev:** bump lint-staged from 13.3.0 to 14.0.0 ([#750](https://github.com/appium/WebDriverAgent/issues/750)) ([0b74bf5](https://github.com/appium/WebDriverAgent/commit/0b74bf5befaa6d87c93a5306beb690a5a0e1843d))
|
|
7
|
+
|
|
8
|
+
## [5.6.0](https://github.com/appium/WebDriverAgent/compare/v5.5.2...v5.6.0) (2023-07-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* apply shouldWaitForQuiescence for activate in /wda/apps/launch ([#739](https://github.com/appium/WebDriverAgent/issues/739)) ([#740](https://github.com/appium/WebDriverAgent/issues/740)) ([66ab695](https://github.com/appium/WebDriverAgent/commit/66ab695f9fa1850145a1d94ef15978b70bc1b032))
|
|
14
|
+
|
|
1
15
|
## [5.5.2](https://github.com/appium/WebDriverAgent/compare/v5.5.1...v5.5.2) (2023-07-07)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -178,13 +178,13 @@ static FBSession *_activeSession = nil;
|
|
|
178
178
|
environment:(nullable NSDictionary <NSString *, NSString *> *)environment
|
|
179
179
|
{
|
|
180
180
|
FBApplication *app = [[FBApplication alloc] initWithBundleIdentifier:bundleIdentifier];
|
|
181
|
+
if (nil == shouldWaitForQuiescence) {
|
|
182
|
+
// Iherit the quiescence check setting from the main app under test by default
|
|
183
|
+
app.fb_shouldWaitForQuiescence = nil != self.testedApplicationBundleId && self.shouldAppsWaitForQuiescence;
|
|
184
|
+
} else {
|
|
185
|
+
app.fb_shouldWaitForQuiescence = [shouldWaitForQuiescence boolValue];
|
|
186
|
+
}
|
|
181
187
|
if (app.fb_state < 2) {
|
|
182
|
-
if (nil == shouldWaitForQuiescence) {
|
|
183
|
-
// Iherit the quiescence check setting from the main app under test by default
|
|
184
|
-
app.fb_shouldWaitForQuiescence = nil != self.testedApplicationBundleId && self.shouldAppsWaitForQuiescence;
|
|
185
|
-
} else {
|
|
186
|
-
app.fb_shouldWaitForQuiescence = [shouldWaitForQuiescence boolValue];
|
|
187
|
-
}
|
|
188
188
|
app.launchArguments = arguments ?: @[];
|
|
189
189
|
app.launchEnvironment = environment ?: @{};
|
|
190
190
|
[app launch];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-webdriveragent",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.1",
|
|
4
4
|
"description": "Package bundling WebDriverAgent",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"eslint-plugin-import": "^2.26.0",
|
|
76
76
|
"eslint-plugin-mocha": "^9.0.0",
|
|
77
77
|
"eslint-plugin-promise": "^6.0.0",
|
|
78
|
-
"lint-staged": "^
|
|
78
|
+
"lint-staged": "^14.0.0",
|
|
79
79
|
"mocha": "^10.0.0",
|
|
80
80
|
"pre-commit": "^1.2.2",
|
|
81
81
|
"prettier": "^3.0.0",
|