appium-uiautomator2-driver 3.7.3 → 3.7.5
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 +12 -0
- package/build/lib/uiautomator2.d.ts.map +1 -1
- package/build/lib/uiautomator2.js +4 -1
- package/build/lib/uiautomator2.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/uiautomator2.js +4 -1
- package/npm-shrinkwrap.json +705 -183
- package/package.json +2 -3
- package/scripts/reset.js +3 -1
package/lib/uiautomator2.js
CHANGED
|
@@ -413,7 +413,10 @@ class UiAutomator2Server {
|
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
try {
|
|
416
|
-
await
|
|
416
|
+
await B.all([
|
|
417
|
+
this.adb.forceStop(SERVER_PACKAGE_ID),
|
|
418
|
+
this.adb.forceStop(SERVER_TEST_PACKAGE_ID)
|
|
419
|
+
]);
|
|
417
420
|
} catch (ignore) {}
|
|
418
421
|
if (strictCleanup) {
|
|
419
422
|
// https://github.com/appium/appium/issues/10749
|