appium-uiautomator2-driver
Advanced tools
Comparing version 3.9.0 to 3.9.1
@@ -7,3 +7,3 @@ /** | ||
*/ | ||
export function mobileScheduleAction(this: import("../driver").AndroidUiautomator2Driver, opts?: Record<string, any> | undefined): Promise<any>; | ||
export function mobileScheduleAction(this: import("../driver").AndroidUiautomator2Driver, opts?: Record<string, any>): Promise<any>; | ||
/** | ||
@@ -15,3 +15,3 @@ * @see https://github.com/appium/appium-uiautomator2-driver/blob/master/docs/scheduled-actions.md#mobile-getactionhistory | ||
*/ | ||
export function mobileGetActionHistory(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ActionArgs | undefined): Promise<import("./types").ActionResult>; | ||
export function mobileGetActionHistory(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ActionArgs): Promise<import("./types").ActionResult>; | ||
/** | ||
@@ -23,3 +23,3 @@ * @this {AndroidUiautomator2Driver} | ||
*/ | ||
export function mobileUnscheduleAction(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ActionArgs | undefined): Promise<any>; | ||
export function mobileUnscheduleAction(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ActionArgs): Promise<any>; | ||
/** | ||
@@ -26,0 +26,0 @@ * @this {AndroidUiautomator2Driver} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
export function mobileAcceptAlert(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").AcceptAlertOptions | undefined): Promise<void>; | ||
export function mobileAcceptAlert(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").AcceptAlertOptions): Promise<void>; | ||
/** | ||
@@ -23,3 +23,3 @@ * @this {AndroidUiautomator2Driver} | ||
*/ | ||
export function mobileDismissAlert(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").DismissAlertOptions | undefined): Promise<void>; | ||
export function mobileDismissAlert(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").DismissAlertOptions): Promise<void>; | ||
/** | ||
@@ -26,0 +26,0 @@ * @this {AndroidUiautomator2Driver} |
@@ -16,5 +16,5 @@ /** | ||
*/ | ||
export function mobileBackgroundApp(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").BackgroundAppOptions | undefined): Promise<void>; | ||
export function mobileBackgroundApp(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").BackgroundAppOptions): Promise<void>; | ||
export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver; | ||
export type StringRecord<T = any> = import("@appium/types").StringRecord<T>; | ||
//# sourceMappingURL=app-management.d.ts.map |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
export function mobileGetAppStrings(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").GetAppStringsOptions | undefined): Promise<StringRecord>; | ||
export function mobileGetAppStrings(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").GetAppStringsOptions): Promise<StringRecord>; | ||
export type ADB = import("appium-adb").ADB; | ||
@@ -11,0 +11,0 @@ export type StringRecord = import("@appium/types").StringRecord; |
@@ -22,3 +22,3 @@ /** | ||
*/ | ||
export function setClipboard(this: import("../driver").AndroidUiautomator2Driver, content: string, contentType?: "plaintext" | undefined, label?: string | undefined): Promise<void>; | ||
export function setClipboard(this: import("../driver").AndroidUiautomator2Driver, content: string, contentType?: "plaintext", label?: string): Promise<void>; | ||
/** | ||
@@ -25,0 +25,0 @@ * @this {AndroidUiautomator2Driver} |
@@ -13,4 +13,4 @@ /** | ||
*/ | ||
export function executeMobile(this: import("../driver").AndroidUiautomator2Driver, mobileCommand: string, opts?: import("@appium/types").StringRecord<any> | undefined): Promise<any>; | ||
export function executeMobile(this: import("../driver").AndroidUiautomator2Driver, mobileCommand: string, opts?: import("@appium/types").StringRecord): Promise<any>; | ||
export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver; | ||
//# sourceMappingURL=execute.d.ts.map |
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
export function mobileClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ClickOptions | undefined): Promise<void>; | ||
export function mobileClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ClickOptions): Promise<void>; | ||
/** | ||
@@ -19,3 +19,3 @@ * Performs a click that lasts for the given duration | ||
*/ | ||
export function mobileLongClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").LongClickOptions | undefined): Promise<void>; | ||
export function mobileLongClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").LongClickOptions): Promise<void>; | ||
/** | ||
@@ -28,3 +28,3 @@ * Performs a click that lasts for the given duration | ||
*/ | ||
export function mobileDoubleClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ClickOptions | undefined): Promise<void>; | ||
export function mobileDoubleClickGesture(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").DoubleClickOptions): Promise<void>; | ||
/** | ||
@@ -31,0 +31,0 @@ * Drags this object to the specified location. |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
export function pressKeyCode(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate?: number | undefined, flags?: number | undefined): Promise<void>; | ||
export function pressKeyCode(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate?: number, flags?: number): Promise<void>; | ||
/** | ||
@@ -17,3 +17,3 @@ * @this {AndroidUiautomator2Driver} | ||
*/ | ||
export function longPressKeyCode(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate: number, flags?: number | undefined): Promise<void>; | ||
export function longPressKeyCode(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate: number, flags?: number): Promise<void>; | ||
/** | ||
@@ -47,4 +47,4 @@ * @this {AndroidUiautomator2Driver} | ||
*/ | ||
export function keyevent(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate?: number | undefined): Promise<void>; | ||
export function keyevent(this: import("../driver").AndroidUiautomator2Driver, keycode: string | number, metastate?: number): Promise<void>; | ||
export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver; | ||
//# sourceMappingURL=keyboard.d.ts.map |
@@ -23,4 +23,4 @@ /** | ||
*/ | ||
export function mobileScreenshots(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ScreenshotsOpts | undefined): Promise<import("@appium/types").StringRecord<import("./types").Screenshot>>; | ||
export function mobileScreenshots(this: import("../driver").AndroidUiautomator2Driver, opts?: import("./types").ScreenshotsOpts): Promise<import("@appium/types").StringRecord<import("./types").Screenshot>>; | ||
export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver; | ||
//# sourceMappingURL=screenshot.d.ts.map |
@@ -18,9 +18,19 @@ "use strict"; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __importStar = (this && this.__importStar) || (function () { | ||
var ownKeys = function(o) { | ||
ownKeys = Object.getOwnPropertyNames || function (o) { | ||
var ar = []; | ||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; | ||
return ar; | ||
}; | ||
return ownKeys(o); | ||
}; | ||
return function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
})(); | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
@@ -27,0 +37,0 @@ return (mod && mod.__esModule) ? mod : { "default": mod }; |
@@ -0,1 +1,7 @@ | ||
## [3.9.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.0...v3.9.1) (2024-11-27) | ||
### Miscellaneous Chores | ||
* Bump android driver ([1bea8e7](https://github.com/appium/appium-uiautomator2-driver/commit/1bea8e761d941fd2e7c4d4cc1a84570d1786f327)) | ||
## [3.9.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.3...v3.9.0) (2024-11-18) | ||
@@ -2,0 +8,0 @@ |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "3.9.0", | ||
"version": "3.9.1", | ||
"bugs": { | ||
@@ -61,3 +61,3 @@ "url": "https://github.com/appium/appium-uiautomator2-driver/issues" | ||
"appium-adb": "^12.7.0", | ||
"appium-android-driver": "^9.14.0", | ||
"appium-android-driver": "^9.14.2", | ||
"appium-uiautomator2-server": "^7.0.24", | ||
@@ -64,0 +64,0 @@ "asyncbox": "^3.0.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
966148
13691
343
5
8
3
68
+ Added@types/express-serve-static-core@5.0.2(transitive)
+ Added@types/node@22.10.0(transitive)
+ Addedappium-android-driver@9.14.2(transitive)
+ Addedappium-chromedriver@6.1.6(transitive)
+ Addedappium-uiautomator2-server@7.1.5(transitive)
+ Addedaxios@1.7.8(transitive)
+ Addedtype-fest@4.29.0(transitive)
+ Addedtypescript@5.7.2(transitive)
+ Addedundici-types@6.20.0(transitive)
- Removed@types/express-serve-static-core@5.0.1(transitive)
- Removed@types/node@22.9.0(transitive)
- Removedappium-android-driver@9.14.1(transitive)
- Removedappium-chromedriver@6.1.5(transitive)
- Removedappium-uiautomator2-server@7.1.3(transitive)
- Removedtype-fest@4.27.0(transitive)
- Removedundici-types@6.19.8(transitive)