How to use adb.getPlatformVersion method in Appium Android Driver

Best JavaScript code snippet using appium-android-driver

adb-commands-specs.js

Source:adb-commands-specs.js Github

copy

Full Screen

...54 it('should call shell with correct args', async () => {55 mocks.adb.expects("getDeviceProperty")56 .once().withExactArgs('ro.build.version.release')57 .returns(platformVersion);58 (await adb.getPlatformVersion()).should.equal(platformVersion);59 mocks.adb.verify();60 });61 }));62 describe('getDeviceSysLanguage', withMocks({adb}, (mocks) => {63 it('should call shell with correct args', async () => {64 mocks.adb.expects("shell")65 .once().withExactArgs(['getprop', 'persist.sys.language'])66 .returns(language);67 (await adb.getDeviceSysLanguage()).should.equal(language);68 mocks.adb.verify();69 });70 }));71 describe('setDeviceSysLanguage', withMocks({adb}, (mocks) => {72 it('should call shell with correct args', async () => {...

Full Screen

Full Screen

ah1.js

Source:ah1.js Github

copy

Full Screen

...173 // first try started devices/emulators174 for (let device of devices) {175 // direct adb calls to the specific device176 await adb.setDeviceId(device.udid);177 let deviceOS = await adb.getPlatformVersion();178 // build up our info string of available devices as we iterate179 availDevicesStr.push(`${device.udid} (${deviceOS})`);180 // we do a begins with check for implied wildcard matching181 // eg: 4 matches 4.1, 4.0, 4.1.3-samsung, etc182 if (deviceOS.indexOf(opts.platformVersion) === 0) {183 udid = device.udid;184 break;185 }186 }187 // we couldn't find anything! quit188 if (!udid) {189 logger.errorAndThrow(`Unable to find an active device or emulator ` +190 `with OS ${opts.platformVersion}. The following ` +191 `are available: ` + availDevicesStr.join(', '));...

Full Screen

Full Screen

android-helpers.js

Source:android-helpers.js Github

copy

Full Screen

...156 // first try started devices/emulators157 for (let device of devices) {158 // direct adb calls to the specific device159 await adb.setDeviceId(device.udid);160 let deviceOS = await adb.getPlatformVersion();161 // build up our info string of available devices as we iterate162 availDevicesStr.push(`${device.udid} (${deviceOS})`);163 // we do a begins with check for implied wildcard matching164 // eg: 4 matches 4.1, 4.0, 4.1.3-samsung, etc165 if (deviceOS.indexOf(opts.platformVersion) === 0) {166 udid = device.udid;167 break;168 }169 }170 // we couldn't find anything! quit171 if (!udid) {172 logger.errorAndThrow(`Unable to find an active device or emulator ` +173 `with OS ${opts.platformVersion}. The following ` +174 `are available: ` + availDevicesStr.join(', '));...

Full Screen

Full Screen

driver-specs.js

Source:driver-specs.js Github

copy

Full Screen

1import chai from 'chai';2import chaiAsPromised from 'chai-as-promised';3import log from '../../lib/logger';4import sinon from 'sinon';5import helpers from '../../lib/android-helpers';6import { withMocks } from 'appium-test-support';7import AndroidDriver from '../..';8import ADB from 'appium-adb';9import { errors } from 'appium-base-driver';10import { fs } from 'appium-support';11import { SharedPrefsBuilder } from 'shared-preferences-builder';12let driver;13let sandbox = sinon.sandbox.create();14let expect = chai.expect;15chai.should();16chai.use(chaiAsPromised);17describe('driver', () => {18 describe('constructor', () => {19 it('should call BaseDriver constructor with opts', () => {20 let driver = new AndroidDriver({foo: 'bar'});21 driver.should.exist;22 driver.opts.foo.should.equal('bar');23 });24 it('should have this.findElOrEls', () => {25 let driver = new AndroidDriver({foo: 'bar'});26 driver.findElOrEls.should.exist;27 driver.findElOrEls.should.be.a('function');28 });29 });30 describe('emulator methods', () => {31 describe('fingerprint', () => {32 it('should be rejected if isEmulator is false', () => {33 let driver = new AndroidDriver();34 sandbox.stub(driver, 'isEmulator').returns(false);35 driver.fingerprint(1111).should.eventually.be.rejectedWith("fingerprint method is only available for emulators");36 driver.isEmulator.calledOnce.should.be.true;37 });38 });39 describe('sendSMS', () => {40 it('sendSMS should be rejected if isEmulator is false', () => {41 let driver = new AndroidDriver();42 sandbox.stub(driver, 'isEmulator').returns(false);43 driver.sendSMS(4509, "Hello Appium").should.eventually.be.rejectedWith("sendSMS method is only available for emulators");44 driver.isEmulator.calledOnce.should.be.true;45 });46 });47 });48 describe('sharedPreferences', () => {49 driver = new AndroidDriver();50 let adb = new ADB();51 driver.adb = adb;52 let builder = new SharedPrefsBuilder();53 describe('should skip setting sharedPreferences', withMocks({driver}, (mocks) => {54 it('on undefined name', async () => {55 driver.opts.sharedPreferences = {};56 (await driver.setSharedPreferences()).should.be.false;57 mocks.driver.verify();58 });59 }));60 describe('should set sharedPreferences', withMocks({driver, adb, builder, fs}, (mocks) => {61 it('on defined sharedPreferences object', async () => {62 driver.opts.appPackage = 'io.appium.test';63 driver.opts.sharedPreferences = {64 name: 'com.appium.prefs',65 prefs: [{type: 'string', name: 'mystr', value:'appium rocks!'}]66 };67 mocks.driver.expects('getPrefsBuilder').once().returns(builder);68 mocks.builder.expects('build').once();69 mocks.builder.expects('toFile').once();70 mocks.adb.expects('shell').once()71 .withExactArgs(['mkdir', '-p', '/data/data/io.appium.test/shared_prefs']);72 mocks.adb.expects('push').once()73 .withExactArgs('/tmp/com.appium.prefs.xml', '/data/data/io.appium.test/shared_prefs/com.appium.prefs.xml');74 mocks.fs.expects('exists').once()75 .withExactArgs('/tmp/com.appium.prefs.xml')76 .returns(true);77 mocks.fs.expects('unlink').once()78 .withExactArgs('/tmp/com.appium.prefs.xml');79 await driver.setSharedPreferences();80 mocks.driver.verify();81 mocks.adb.verify();82 mocks.builder.verify();83 mocks.fs.verify();84 });85 }));86 });87 describe('createSession', () => {88 beforeEach(() => {89 driver = new AndroidDriver();90 sandbox.stub(driver, 'checkAppPresent');91 sandbox.stub(driver, 'checkPackagePresent');92 sandbox.stub(driver, 'startAndroidSession');93 sandbox.stub(ADB, 'createADB', async (opts) => {94 return {95 getDevicesWithRetry: async () => {96 return [97 {udid: 'emulator-1234'},98 {udid: 'rotalume-1337'}99 ];100 },101 getPortFromEmulatorString: () => {102 return 1234;103 },104 setDeviceId: () => {},105 setEmulatorPort: () => {},106 adbPort: opts.adbPort,107 networkSpeed: () => {}108 };109 });110 });111 afterEach(() => {112 sandbox.restore();113 });114 it('should verify device is an emulator', async () => {115 driver.opts.avd = "Nexus_5X_Api_23";116 driver.isEmulator().should.equal(true);117 driver.opts.avd = undefined;118 driver.opts.udid = "emulator-5554";119 driver.isEmulator().should.equal(true);120 driver.opts.udid = "01234567889";121 driver.isEmulator().should.equal(false);122 });123 it('should get java version if none is provided', async () => {124 await driver.createSession({platformName: 'Android', deviceName: 'device', app: '/path/to/some.apk'});125 driver.opts.javaVersion.should.exist;126 });127 it('should get browser package details if browserName is provided', async () => {128 sandbox.spy(helpers, 'getChromePkg');129 await driver.createSession({platformName: 'Android', deviceName: 'device', browserName: 'Chrome'});130 helpers.getChromePkg.calledOnce.should.be.true;131 });132 it('should check an app is present', async () => {133 await driver.createSession({platformName: 'Android', deviceName: 'device', app: '/path/to/some.apk'});134 driver.checkAppPresent.calledOnce.should.be.true;135 });136 it('should check a package is present', async () => {137 await driver.createSession({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package'});138 driver.checkPackagePresent.calledOnce.should.be.true;139 });140 it('should accept a package via the app capability', async () => {141 await driver.createSession({platformName: 'Android', deviceName: 'device', app: 'some.app.package'});142 driver.checkPackagePresent.calledOnce.should.be.true;143 });144 it('should add server details to caps', async () => {145 await driver.createSession({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package'});146 driver.caps.webStorageEnabled.should.exist;147 });148 it('should delete a session on failure', async () => {149 // Force an error to make sure deleteSession gets called150 sandbox.stub(helpers, 'getJavaVersion').throws();151 sandbox.stub(driver, 'deleteSession');152 try {153 await driver.createSession({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package'});154 } catch (ign) {}155 driver.deleteSession.calledOnce.should.be.true;156 });157 it('should pass along adbPort capability to ADB', async () => {158 await driver.createSession({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package', adbPort: 1111});159 driver.adb.adbPort.should.equal(1111);160 });161 it('should proxy screenshot if nativeWebScreenshot is off', async () => {162 await driver.createSession({platformName: 'Android', deviceName: 'device', browserName: 'chrome', nativeWebScreenshot: false});163 driver.getProxyAvoidList().should.have.length(8);164 });165 it('should not proxy screenshot if nativeWebScreenshot is on', async () => {166 await driver.createSession({platformName: 'Android', deviceName: 'device', browserName: 'chrome', nativeWebScreenshot: true});167 driver.getProxyAvoidList().should.have.length(9);168 });169 it('should set networkSpeed before launching app', async () => {170 sandbox.stub(driver, 'isEmulator').returns(true);171 sandbox.stub(helpers, 'ensureNetworkSpeed').returns('full');172 await driver.createSession({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package', networkSpeed: 'edge'});173 driver.isEmulator.calledOnce.should.be.true;174 helpers.ensureNetworkSpeed.calledOnce.should.be.true;175 });176 });177 describe('deleteSession', () => {178 beforeEach(async () => {179 driver = new AndroidDriver();180 driver.adb = new ADB();181 driver.bootstrap = new helpers.bootstrap(driver.adb);182 sandbox.stub(driver, 'stopChromedriverProxies');183 sandbox.stub(driver.adb, 'setIME');184 sandbox.stub(driver.adb, 'forceStop');185 sandbox.stub(driver.adb, 'goToHome');186 sandbox.stub(driver.adb, 'uninstallApk');187 sandbox.stub(driver.adb, 'stopLogcat');188 sandbox.stub(driver.bootstrap, 'shutdown');189 sandbox.spy(log, 'debug');190 });191 afterEach(() => {192 sandbox.restore();193 });194 it('should not do anything if Android Driver has already shut down', async () => {195 driver.bootstrap = null;196 await driver.deleteSession();197 log.debug.callCount.should.eql(3);198 driver.stopChromedriverProxies.called.should.be.false;199 driver.adb.stopLogcat.called.should.be.true;200 });201 it('should reset keyboard to default IME', async () => {202 driver.opts.unicodeKeyboard = true;203 driver.opts.resetKeyboard = true;204 driver.defaultIME = 'someDefaultIME';205 await driver.deleteSession();206 driver.adb.setIME.calledOnce.should.be.true;207 });208 it('should force stop non-Chrome sessions', async () => {209 await driver.deleteSession();210 driver.adb.forceStop.calledOnce.should.be.true;211 });212 it('should uninstall APK if required', async () => {213 driver.opts.fullReset = true;214 await driver.deleteSession();215 driver.adb.uninstallApk.calledOnce.should.be.true;216 });217 });218 describe('dismissChromeWelcome', () => {219 before(async () => {220 driver = new AndroidDriver();221 });222 it('should verify chromeOptions args', () => {223 driver.opts = {};224 driver.shouldDismissChromeWelcome().should.be.false;225 driver.opts = {chromeOptions: {}};226 driver.shouldDismissChromeWelcome().should.be.false;227 driver.opts = {chromeOptions: {args: []}};228 driver.shouldDismissChromeWelcome().should.be.false;229 driver.opts = {chromeOptions: {args: "--no-first-run"}};230 driver.shouldDismissChromeWelcome().should.be.false;231 driver.opts = {chromeOptions: {args: ["--disable-dinosaur-easter-egg"]}};232 driver.shouldDismissChromeWelcome().should.be.false;233 driver.opts = {chromeOptions: {args: ["--no-first-run"]}};234 driver.shouldDismissChromeWelcome().should.be.true;235 });236 });237 describe('initAUT', withMocks({helpers}, (mocks) => {238 beforeEach(async () => {239 driver = new AndroidDriver();240 driver.caps = {};241 });242 it('should throw error if run with full reset', async () => {243 driver.opts = {appPackage: "app.package", appActivity: "act", fullReset: true};244 await driver.initAUT().should.be.rejectedWith(/Full reset requires an app capability/);245 });246 it('should reset if run with fast reset', async () => {247 driver.opts = {appPackage: "app.package", appActivity: "act", fullReset: false, fastReset: true};248 driver.adb = "mock_adb";249 mocks.helpers.expects("resetApp").withExactArgs("mock_adb", undefined, "app.package", true);250 await driver.initAUT();251 mocks.helpers.verify();252 });253 it('should keep data if run without reset', async () => {254 driver.opts = {appPackage: "app.package", appActivity: "act", fullReset: false, fastReset: false};255 mocks.helpers.expects("resetApp").never();256 await driver.initAUT();257 mocks.helpers.verify();258 });259 }));260 describe('startAndroidSession', () => {261 beforeEach(async () => {262 driver = new AndroidDriver();263 driver.adb = new ADB();264 driver.bootstrap = new helpers.bootstrap(driver.adb);265 driver.settings = { update () {} };266 driver.caps = {};267 // create a fake bootstrap because we can't mock268 // driver.bootstrap.<whatever> in advance269 let fakeBootstrap = {start () {},270 onUnexpectedShutdown: {catch () {}}271 };272 sandbox.stub(helpers, 'initDevice');273 sandbox.stub(helpers, 'unlock');274 sandbox.stub(helpers, 'bootstrap').returns(fakeBootstrap);275 sandbox.stub(driver, 'initAUT');276 sandbox.stub(driver, 'startAUT');277 sandbox.stub(driver, 'defaultWebviewName');278 sandbox.stub(driver, 'setContext');279 sandbox.stub(driver, 'startChromeSession');280 sandbox.stub(driver, 'dismissChromeWelcome');281 sandbox.stub(driver.settings, 'update');282 sandbox.stub(driver.adb, 'getPlatformVersion');283 sandbox.stub(driver.adb, 'getScreenSize');284 sandbox.stub(driver.adb, 'getModel');285 sandbox.stub(driver.adb, 'getManufacturer');286 });287 afterEach(() => {288 sandbox.restore();289 });290 it('should set actual platform version', async () => {291 await driver.startAndroidSession();292 driver.adb.getPlatformVersion.calledOnce.should.be.true;293 });294 it('should auto launch app if it is on the device', async () => {295 driver.opts.autoLaunch = true;296 await driver.startAndroidSession();297 driver.initAUT.calledOnce.should.be.true;298 });299 it('should handle chrome sessions', async () => {300 driver.opts.browserName = 'Chrome';301 await driver.startAndroidSession();302 driver.startChromeSession.calledOnce.should.be.true;303 });304 it('should unlock the device', async () => {305 await driver.startAndroidSession();306 helpers.unlock.calledOnce.should.be.true;307 });308 it('should start AUT if auto lauching', async () => {309 driver.opts.autoLaunch = true;310 await driver.startAndroidSession();311 driver.initAUT.calledOnce.should.be.true;312 });313 it('should not start AUT if not auto lauching', async () => {314 driver.opts.autoLaunch = false;315 await driver.startAndroidSession();316 driver.initAUT.calledOnce.should.be.false;317 });318 it('should set the context if autoWebview is requested', async () => {319 driver.opts.autoWebview = true;320 await driver.startAndroidSession();321 driver.defaultWebviewName.calledOnce.should.be.true;322 driver.setContext.calledOnce.should.be.true;323 });324 it('should set the context if autoWebview is requested using timeout', async () => {325 driver.setContext.onCall(0).throws(errors.NoSuchContextError);326 driver.setContext.onCall(1).returns();327 driver.opts.autoWebview = true;328 driver.opts.autoWebviewTimeout = 5000;329 await driver.startAndroidSession();330 driver.defaultWebviewName.calledOnce.should.be.true;331 driver.setContext.calledTwice.should.be.true;332 });333 it('should respect timeout if autoWebview is requested', async function () {334 this.timeout(10000);335 driver.setContext.throws(new errors.NoSuchContextError());336 let begin = Date.now();337 driver.opts.autoWebview = true;338 driver.opts.autoWebviewTimeout = 5000;339 await driver.startAndroidSession().should.eventually.be.rejected;340 driver.defaultWebviewName.calledOnce.should.be.true;341 // we have a timeout of 5000ms, retrying on 500ms, so expect 10 times342 driver.setContext.callCount.should.equal(10);343 let end = Date.now();344 (end - begin).should.be.above(5000);345 });346 it('should not set the context if autoWebview is not requested', async () => {347 await driver.startAndroidSession();348 driver.defaultWebviewName.calledOnce.should.be.false;349 driver.setContext.calledOnce.should.be.false;350 });351 it('should set ignoreUnimportantViews cap', async () => {352 driver.opts.ignoreUnimportantViews = true;353 await driver.startAndroidSession();354 driver.settings.update.calledOnce.should.be.true;355 driver.settings.update.firstCall.args[0].ignoreUnimportantViews.should.be.true;356 });357 it('should not call dismissChromeWelcome on missing chromeOptions', async () => {358 driver.opts.browserName = 'Chrome';359 await driver.startAndroidSession();360 driver.dismissChromeWelcome.calledOnce.should.be.false;361 });362 it('should call dismissChromeWelcome', async () => {363 driver.opts.browserName = 'Chrome';364 driver.opts.chromeOptions = {365 "args" : ["--no-first-run"]366 };367 await driver.startAndroidSession();368 driver.dismissChromeWelcome.calledOnce.should.be.true;369 });370 });371 describe('validateDesiredCaps', () => {372 before(() => {373 driver = new AndroidDriver();374 });375 it('should throw an error if caps do not contain an app, package or valid browser', () => {376 expect(() => {377 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device'});378 }).to.throw(/must include/);379 expect(() => {380 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', browserName: 'Netscape Navigator'});381 }).to.throw(/must include/);382 });383 it('should not throw an error if caps contain an app, package or valid browser', () => {384 expect(() => {385 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', app: '/path/to/some.apk'});386 }).to.not.throw(Error);387 expect(() => {388 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', browserName: 'Chrome'});389 }).to.not.throw(Error);390 expect(() => {391 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', appPackage: 'some.app.package'});392 }).to.not.throw(/must include/);393 });394 it('should not be sensitive to platform name casing', () => {395 expect(() => {396 driver.validateDesiredCaps({platformName: 'AnDrOiD', deviceName: 'device', app: '/path/to/some.apk'});397 }).to.not.throw(Error);398 });399 it('should not throw an error if caps contain both an app and browser, for grid compatibility', () => {400 expect(() => {401 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', app: '/path/to/some.apk', browserName: 'iPhone'});402 }).to.not.throw(Error);403 });404 it('should not throw an error if caps contain androidScreenshotPath capability', () => {405 expect(() => {406 driver.validateDesiredCaps({platformName: 'Android', deviceName: 'device', app: '/path/to/some.apk', androidScreenshotPath: '/path/to/screenshotdir'});407 }).to.not.throw(Error);408 });409 });410 describe('proxying', () => {411 before(() => {412 driver = new AndroidDriver();413 driver.sessionId = 'abc';414 });415 describe('#proxyActive', () => {416 it('should exist', () => {417 driver.proxyActive.should.be.an.instanceof(Function);418 });419 it('should return false', () => {420 driver.proxyActive('abc').should.be.false;421 });422 it('should throw an error if session id is wrong', () => {423 (() => { driver.proxyActive('aaa'); }).should.throw;424 });425 });426 describe('#getProxyAvoidList', () => {427 it('should exist', () => {428 driver.getProxyAvoidList.should.be.an.instanceof(Function);429 });430 it('should return jwpProxyAvoid array', () => {431 let avoidList = driver.getProxyAvoidList('abc');432 avoidList.should.be.an.instanceof(Array);433 avoidList.should.eql(driver.jwpProxyAvoid);434 });435 it('should throw an error if session id is wrong', () => {436 (() => { driver.getProxyAvoidList('aaa'); }).should.throw;437 });438 });439 describe('#canProxy', () => {440 it('should exist', () => {441 driver.canProxy.should.be.an.instanceof(Function);442 });443 it('should return false', () => {444 driver.canProxy('abc').should.be.false;445 });446 it('should throw an error if session id is wrong', () => {447 (() => { driver.canProxy('aaa'); }).should.throw;448 });449 });450 });...

Full Screen

Full Screen

driver.js

Source:driver.js Github

copy

Full Screen

...207 this.defaultIME = await helpers.initDevice(this.adb, this.opts);208 // set actual device name, udid, platform version, screen size, model and manufacturer details.209 this.caps.deviceName = this.adb.curDeviceId;210 this.caps.deviceUDID = this.opts.udid;211 this.caps.platformVersion = await this.adb.getPlatformVersion();212 this.caps.deviceScreenSize = await this.adb.getScreenSize();213 this.caps.deviceModel = await this.adb.getModel();214 this.caps.deviceManufacturer = await this.adb.getManufacturer();215 if (this.opts.disableWindowAnimation) {216 if (await this.adb.isAnimationOn()) {217 if (await this.adb.getApiLevel() >= 28) { // API level 28 is Android P218 // Don't forget to reset the relaxing in delete session219 log.warn('Relaxing hidden api policy to manage animation scale');220 await this.adb.setHiddenApiPolicy('1', !!this.opts.ignoreHiddenApiPolicyError);221 }222 log.info('Disabling window animation as it is requested by "disableWindowAnimation" capability');223 await this.adb.setAnimationState(false);224 this._wasWindowAnimationDisabled = true;225 } else {...

Full Screen

Full Screen

DeviceDiscoveryService.js

Source:DeviceDiscoveryService.js Github

copy

Full Screen

...221 // set device id222 adb.setDeviceId(uuid);223 // platform and version224 devInfo.os.name = 'Android';225 devInfo.os.version = await adb.getPlatformVersion();226 devInfo.os.apiLevel = await adb.getApiLevel();227 // product related228 devInfo.product.brand = await adb.shell(['getprop', 'ro.product.brand']);229 devInfo.product.manufacturer = await adb.shell(['getprop', 'ro.product.manufacturer']);230 devInfo.product.model = await adb.shell(['getprop', 'ro.product.model']);231 devInfo.product.code = await adb.shell(['getprop', 'ril.product_code']);232 devInfo.product.battery = await adb.shell(['dumpsys', 'battery']);233 return devInfo;234 }235 236 async _updateIOSDevices(timestamp) {237 try {238 const connectedDevices = await this._iosGetAvailableDevices();239 if (Array.isArray(connectedDevices)) {...

Full Screen

Full Screen

adb-commands-e2e-specs.js

Source:adb-commands-e2e-specs.js Github

copy

Full Screen

...26 it('getApiLevel should get correct api level', async () => {27 (await adb.getApiLevel()).should.equal(apiLevel);28 });29 it('getPlatformVersion should get correct platform version', async () => {30 (await adb.getPlatformVersion()).should.include(platformVersion);31 });32 it('availableIMEs should get list of available IMEs', async () => {33 (await adb.availableIMEs()).should.have.length.above(0);34 });35 it('enabledIMEs should get list of enabled IMEs', async () => {36 (await adb.enabledIMEs()).should.have.length.above(0);37 });38 it('defaultIME should get default IME', async () => {39 defaultIMEs.should.include(await adb.defaultIME());40 });41 it('enableIME and disableIME should enable and disble IME', async () => {42 await adb.disableIME(IME);43 (await adb.enabledIMEs()).should.not.include(IME);44 await adb.enableIME(IME);...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var wd = require('wd');2var asserters = wd.asserters;3var _ = require('underscore');4var Q = require('q');5var path = require('path');6var fs = require('fs');7var AdmZip = require('adm-zip');8var unzip = require('unzip');9var request = require('request');10var exec = require('child_process').exec;11var AdmZip = require('adm-zip');12var zip = new AdmZip();13var adb = require('adbkit');14var client = adb.createClient();15var platformVersion = client.getPlatformVersion();16console.log("platformVersion = " + platformVersion);17var wd = require('wd');18var asserters = wd.asserters;19var _ = require('underscore');20var Q = require('q');21var path = require('path');22var fs = require('fs');23var AdmZip = require('adm-zip');24var unzip = require('unzip');25var request = require('request');26var exec = require('child_process').exec;27var AdmZip = require('adm-zip');28var zip = new AdmZip();29var adb = require('adbkit');30var client = adb.createClient();31var platformVersion = client.getPlatformVersion();32console.log("platformVersion = " + platformVersion);33var wd = require('wd');34var asserters = wd.asserters;35var _ = require('underscore');36var Q = require('q');37var path = require('path');38var fs = require('fs');39var AdmZip = require('adm-zip');40var unzip = require('unzip');41var request = require('request');42var exec = require('child_process').exec;43var AdmZip = require('adm-zip');

Full Screen

Using AI Code Generation

copy

Full Screen

1const wd = require('wd');2const { androidConfig } = require('./helpers/config');3const { androidCaps } = require('./helpers/caps');4const { serverConfig } = require('./helpers/config');5const driver = wd.promiseChainRemote(serverConfig);6 .init(androidCaps)7 .getPlatformVersion()8 .then((platformVersion) => {9 console.log(`Platform Version: ${platformVersion}`);10 })11 .quit();12exports.serverConfig = {13};14exports.androidCaps = {15};16exports.androidConfig = {17};18exports.serverConfig = {19};20exports.androidCaps = {21};22exports.androidConfig = {23};24exports.serverConfig = {25};26exports.androidCaps = {27};28exports.androidConfig = {29};30exports.serverConfig = {31};32exports.androidCaps = {

Full Screen

Using AI Code Generation

copy

Full Screen

1var webdriver = require('selenium-webdriver');2var AndroidDriver = require('appium').AndroidDriver;3var adb = require('appium').adb;4var driver = new AndroidDriver();5driver.init({browserName: 'chrome', app: 'path/to/apk', platformName: 'Android', platformVersion: '4.4'});6var platformVersion = adb.getPlatformVersion();7console.log(platformVersion);8driver.quit();9var webdriver = require('selenium-webdriver');10var AndroidDriver = require('appium').AndroidDriver;11var adb = require('appium').adb;12var driver = new AndroidDriver();13driver.init({browserName: 'chrome', app: 'path/to/apk', platformName: 'Android', platformVersion: '4.4'});14var platformVersion = adb.getPlatformVersion();15platformVersion.then(function(version){16 console.log(version);17});18driver.quit();

Full Screen

Using AI Code Generation

copy

Full Screen

1var wd = require('wd');2var assert = require('assert');3var Appium = require('appium');4var _ = require('underscore');5var _ = require('underscore');6var appium = new Appium();7var desiredCaps = {8};9var browser = wd.promiseChainRemote("

Full Screen

Using AI Code Generation

copy

Full Screen

1var wd = require('wd');2var assert = require('assert');3var path = require('path');4var fs = require('fs');5var os = require('os');6var adb = require('adbkit');7var client = adb.createClient();8androidDriver.init({9}).then(function() {10 return androidDriver.getPlatformVersion();11}).then(function(platformVersion) {12 console.log("The platform version of the Android device is: " + platformVersion);13 return androidDriver.quit();14}).then(function() {15 console.log("Test completed successfully");16}).catch(function(err) {17 console.log("An error occurred. Error code: " + err.code);18 console.log("Error message: " + err.message);19 console.log("Stack trace: " + err.stack);20 androidDriver.quit();21});

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Appium Android Driver automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful