appium基础-5 填坑appium脚本编写

  • urllib.error.URLError: 【报错分析】Appium服务未启动
    【解决方案】点击启动Appium按钮后,出现[Appium] Welcome to Appium v1.7.2提示后再运行脚本会话冲突
  • error: Failed to start an Appium session, err was: Error: Requested a new session but one was in progress
    【报错分析】 之前的会话没有关闭,然后你又运行了测试实例,也没有设置覆盖.
    【解决方案】 重新停止appium服务,开启Appium服务 在AdVance界面勾选Allow Session Override选项 ,重启Appium 测试结束在AfterClass加driver.quit()
  • 未安装java环境
    selenium.common.exceptions.WebDriverException: Message: A new session could not be created. (Original error: ‘java -version’ failed. Error: Command failed: C:\WINDOWS\system32\cmd.exe /s /c “java -version”
  • 设备未连接
    selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Could not find a connected Android device.
    【解决方案】由于设备未连接,或者连接后未开启USB Debug。需要重新连接设备即可。
  • 更换手机设备后如下对应的属性要记得更新,否则无法正常运行脚本。
    desired_caps[‘platformVersion’] = ‘XXX’
    desired_caps[‘deviceName’] = ‘Galaxy S6 edge+’
  • launchable activity 值写错
    Activity used to start app doesn’t exist or cannot be launched! Make sure it exists and is a launchable activity
    【解决方案】 launchable activity 写错更正即可。如果是存在此activity,则一定是AndroidMainfest.xml.xml中,当前activity设置的属性exported=false,表示当前activity无法被外部程序唤醒。(appium无法唤醒此类)需要研发人员去修改参数。
  • 系统权限问题
    Failure [INSTALL_FAILED_USER_RESTRICTED])
    【解决方案】
  1. USB安装管理权限限制,关闭即可。
  2. 开启安装允许未知来源app选项
  • 服务异常
    An unknown server-side error occurred while processing the command” while opening the App
    【解决方案】重新启动Appium服务

你可能感兴趣的:(Appium+Python3)