• Appium禁止appium setting和unlock在设备上重复安装


    1、文件:/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/lib/driver.js,注释以下几句代码

        await this.adb.uninstallApk(this.opts.appPackage);

      await helpers.installApkRemotely(this.adb, this.opts);

      await helpers.resetApp(this.adb, this.opts.app, this.opts.appPackage, this.opts.fastReset);
      await this.checkPackagePresent();
     
    2、文件:/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/build/lib/driver.js,注释以下几句代码:
        return _regeneratorRuntime.awrap(_androidHelpers2['default'].resetApp(this.adb, this.opts.app, this.opts.appPackage, this.opts.fastReset));
        return _regeneratorRuntime.awrap(this.adb.uninstallApk(this.opts.app));
        return _regeneratorRuntime.awrap(_androidHelpers2['default'].installApkRemotely(this.adb, this.opts));
        return _regeneratorRuntime.awrap(this.checkPackagePresent());
     
    3、文件:/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/lib/android-helpers.js 注释以下几句代码
        await adb.install(unicodeIMEPath, false);
      await helpers.pushSettingsApp(adb);
      await helpers.pushUnlock(adb);
     
    4、文件/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/build/lib/android-helpers.js  替换以下几句代码
        return _regeneratorRuntime.awrap(helpers.initUnicodeKeyboard(adb))  替换为return context$1$0.abrupt('return', defaultIME);
        return _regeneratorRuntime.awrap(helpers.pushSettingsApp(adb));  替换为return context$1$0.abrupt('return', defaultIME);
        return _regeneratorRuntime.awrap(helpers.pushUnlock(adb));  替换为return context$1$0.abrupt('return', defaultIME);
     
     
     
     
     
  • 相关阅读:
    Xcopy参数介绍
    C# 子窗体中调用父窗体中的方法(或多窗体之间方法调用)
    WinForm窗体之间交互的一些方法(转)
    C#.Net组件开发 使用Attach to Process实时调试设计器代码(转)
    win7以管理员身份运行程序
    如何关闭Windows7的UAC
    用“回车”键代替“Tab”键
    笑话20110928
    项目管理师
    软考计算机技术与软件专业技术资格(水平)考试
  • 原文地址:https://www.cnblogs.com/ljfight/p/8488491.html
Copyright © 2020-2023  润新知