feat: add GetCurrentWindow() for Android device

This commit is contained in:
lilong.129
2024-11-20 11:36:19 +08:00
parent 6e2f0188b3
commit 7d6b5d2405
6 changed files with 41 additions and 1 deletions

View File

@@ -771,3 +771,7 @@ func (dev *IOSDevice) GetPackageInfo(packageName string) (AppInfo, error) {
}
return appInfo, errors.New("failed to get package version")
}
func (dev *IOSDevice) GetCurrentWindow() (WindowInfo, error) {
return WindowInfo{}, nil
}