How to use driver.stopChromedriverProxies method in Appium Android Driver

Best JavaScript code snippet using appium-android-driver

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

context-specs.js

Source:context-specs.js Github

copy

Full Screen

...216  describe('stopChromedriverProxies', function () {217    it('should stop all chromedriver', async function () {218      driver.sessionChromedrivers = {WEBVIEW_1: stubbedChromedriver, WEBVIEW_2: stubbedChromedriver};219      sandbox.stub(driver, 'suspendChromedriverProxy');220      await driver.stopChromedriverProxies();221      driver.suspendChromedriverProxy.calledOnce.should.be.true;222      stubbedChromedriver.removeAllListeners223        .calledWithExactly(Chromedriver.EVENT_CHANGED).should.be.true;224      stubbedChromedriver.removeAllListeners.calledTwice.should.be.true;225      stubbedChromedriver.stop.calledTwice.should.be.true;226      driver.sessionChromedrivers.should.be.empty;227    });228  });229  describe('isChromedriverContext', function () {230    it('should return true if context is webview or chromium', async function () {231      await driver.isChromedriverContext(WEBVIEW_WIN + '_1').should.be.true;232      await driver.isChromedriverContext(CHROMIUM_WIN).should.be.true;233    });234  });...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1driver.stopChromedriverProxies();2driver.startChromedriverProxy();3driver.getChromedriverProxies();4driver.getChromedriverProxy();5driver.getChromedriverProxyStatus();6driver.getChromedriverProxyLog();7driver.getChromedriverProxyLogLevel();8driver.setChromedriverProxyLogLevel();9driver.getChromedriverProxyLogTypes();10driver.getChromedriverProxyLogType();11driver.getChromedriverProxyLogTypeSize();12driver.getChromedriverProxyLogTypeLogs();13driver.getChromedriverProxyLogTypeLogsFrom();14driver.getChromedriverProxyLogTypeLogsTo();15driver.getChromedriverProxyLogTypeLogsFromTo();

Full Screen

Using AI Code Generation

copy

Full Screen

1var driver = new AndroidDriver();2driver.stopChromedriverProxies();3var driver = new AndroidDriver();4driver.startChromedriverProxy();5var driver = new AndroidDriver();6driver.getChromedriverProxy();7var driver = new AndroidDriver();8driver.getChromeWindowHandles();9var driver = new AndroidDriver();10driver.getContext();11var driver = new AndroidDriver();12driver.getContexts();13var driver = new AndroidDriver();14driver.setContext();15var driver = new AndroidDriver();16driver.getCurrentActivity();17var driver = new AndroidDriver();18driver.getDeviceTime();19var driver = new AndroidDriver();20driver.getDevicePlatform();21var driver = new AndroidDriver();22driver.getDeviceSysLanguage();23var driver = new AndroidDriver();24driver.getDeviceSysCountry();25var driver = new AndroidDriver();

Full Screen

Using AI Code Generation

copy

Full Screen

1driver.stopChromedriverProxies();2driver.startChromedriverProxy();3driver.quit();4driver.quit();5driver.quit();6driver.quit();7driver.quit();8driver.quit();

Full Screen

Using AI Code Generation

copy

Full Screen

1const chai = require('chai');2const chaiAsPromised = require('chai-as-promised');3const path = require('path');4const driver = require('appium-android-driver');5const ADB = require('appium-adb').ADB;6const B = require('bluebird');7const _ = require('lodash');8const logger = require('appium-support').logger.getLogger('test');9chai.should();10chai.use(chaiAsPromised);11describe('test', function () {12  let adb;13  let proxy;14  before(async function () {15    adb = await ADB.createADB();16    proxy = await driver.createChromedriverProxies(adb, logger);17  });18  it('should stop all proxies', async function () {19    await driver.stopChromedriverProxies(proxy);20  });21});

Full Screen

Using AI Code Generation

copy

Full Screen

1driver.stopChromedriverProxies().then(function(){2  console.log('success');3}, function(err){4  console.log('error');5});6    at ChildProcess.exithandler (child_process.js:206:12)7    at emitTwo (events.js:106:13)8    at ChildProcess.emit (events.js:191:7)9    at maybeClose (internal/child_process.js:852:16)10    at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5)

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