appium连app报错:command: Error: Cannot start the 'com.foreverht.workplus.htkgszgyy' application

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appium连app报错:command: Error: Cannot start the 'com.foreverht.workplus.htkgszgyy' application相关的知识,希望对你有一定的参考价值。

包名跟activity都是直接通过adb shell dumpsys window | findstr mCurrentFocus命令获取然后复制粘贴的的,该不会错。而且只有这个连接不上,换另一个app更换包名跟activity后连接正常,搞不懂是不是还要配置什么参数之内的吗 "deviceName": "JKM-AL00a", "platformVersion": "9", "appPackage": "com.foreverht.workplus.htkgszgyy", "appActivity": "com.foreveross.atwork.modules.app.activity.WebViewActivity", "platformName": "android"

参考技术A 很多小伙伴出现该问题的原因是包名和界面名写错,于是排查了一阵,自己的包名和界面名并没有写错,但是总是打不开,于是打开其它APP,可以正常打开,又百度了一圈,看到有人说是界面的权限不足,需要开发给打开的界面给一个export权限,但是export权限不安全,不想麻烦开发的小伙伴,于是重新获取APP启动界面,于是成功解决该问题追问

???啥东东???

参考技术B 更换包名能正常启动,就说明你的其他参数配置没问题,通常appPackage没错的话,就是appActivity错了,appActivity启动页很容易找错,仔细再找找

appium在android 7.0真机上运行报错command failed shell:............ps:'uiautomator"的解决方式

appium版本:1_4_16

在CSDN中找到相关解决的方案,根据此解决方案顺利的解决了让人惆怅的问题,再次记录。

1、找到appium安装目录下的adb.js文件,目录为:Appium\node_modules\appium\node_modules\appium-adb\lib

2、打开adb.js,可使用notepad++编辑器等打开文件(说明:在修改代码的时候先注释掉以前的代码,并且添加自己容易识别的标记,以防出错后还有回旋的余地,或者将代码备份也可行),找到如下代码:

ADB.prototype.shell = function (cmd, cb) {
  if (cmd.indexOf(") === -1) {
    cmd = " + cmd + ";
  }
  var execCmd = shell  + cmd;
  this.exec(execCmd, cb);
};

在这段代码下面加入如下代码:

ADB.prototype.shell_grep = function (cmd, grep, cb) {
  if (cmd.indexOf(") === -1) {
    cmd = " + cmd + ";
  }
  var execCmd = shell  + cmd + | grep  + grep;
  this.exec(execCmd, cb);
};

再次找到如下代码:

ADB.prototype.getPIDsByName = function (name, cb) {
  logger.debug("Getting all processes with ‘" + name + "");
  this.shell("ps ‘" + name + "", function (err, stdout) {
    if (err) return cb(err);
    stdout = stdout.trim();
    var procs = [];
    var outlines = stdout.split("\n");
    outlines.shift();
    _.each(outlines, function (outline) {
      if (outline.indexOf(name) !== -1) {
        procs.push(outline);
      }
    });
    if (procs.length < 1) {
      logger.debug("No matching processes found");
      return cb(null, []);
    }
    var pids = [];
    _.each(procs, function (proc) {
      var match = /[^\t ]+[\t ]+([0-9]+)/.exec(proc);
      if (match) {
        pids.push(parseInt(match[1], 10));
      }
    });
    if (pids.length !== procs.length) {
      var msg = "Could not extract PIDs from ps output. PIDS: " +
                JSON.stringify(pids) + ", Procs: " + JSON.stringify(procs);
      return cb(new Error(msg));
    }
    cb(null, pids);
  });
};

将以上代码注释掉,替换成如下代码:

ADB.prototype.getPIDsByName = function (name, cb) {
  logger.debug("Getting all processes with ‘" + name + "");
  this.shell_grep("ps", name, function (err, stdout) {
    if (err) {
      logger.debug("No matching processes found");
      return cb(null, []);
    }
    var pids = [];
    _.each(procs, function (proc) {
    var match = /[^\t ]+[\t ]+([0-9]+)/.exec(proc);
    if (match) {
    pids.push(parseInt(match[1], 10));
    }
    });
    if (pids.length !== procs.length) {
      var msg = "Could not extract PIDs from ps output. PIDS: " +
      JSON.stringify(pids) + ", Procs: " + JSON.stringify(procs);
      return cb(new Error(msg));
    }
    cb(null, pids);
  });
};

3、重启appium,连接手机成功运行看到解决问题已ok

 

以上是关于appium连app报错:command: Error: Cannot start the 'com.foreverht.workplus.htkgszgyy' application的主要内容,如果未能解决你的问题,请参考以下文章

appium在android 7.0真机上运行报错command failed shell:............ps:'uiautomator"的解决方式

python爬虫之Appium手机APP爬虫

工具连接哨兵ERR unknown command `select`, with args beginning with: `0`

Appium报错: An unknown server-side error occurred while processing the command. Original error: java.l

React项目创建报错解决方案npm ERR! code 1 npm ERR! path E:Node1untitled5 ode_modulesfibers npm ERR! command

用命令方式启动停止appium服务和app