We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4855ee commit d27bf47Copy full SHA for d27bf47
lib/ns-capabilities.ts
@@ -103,7 +103,7 @@ export class NsCapabilities implements INsCapabilities {
103
}
104
} else {
105
if (this._isAndroid) {
106
- if (this.tryGetAndroidApiLevel() > 24 || (this.appiumCaps["apiLevel"] && this.appiumCaps["apiLevel"].toLowerCase().includes("p"))) {
+ if (this.tryGetAndroidApiLevel() > 6 || this.tryGetAndroidApiLevel() > 24 || (this.appiumCaps["apiLevel"] && this.appiumCaps["apiLevel"].toLowerCase().includes("p"))) {
107
this._automationName = AutomationName.UiAutomator2;
108
109
0 commit comments