现象:Appium运行脚本报错InvalidSelectorException: Message: Locator Strategy 'css selector' is not supported for this session,但是脚本里使用的定位元素方法为find_element_by_id() 原因: 根本原因1:电脑里安装的selenium版本和Appium-Python-Client版本不兼容 原因2:selenium版本之前是单独安装的3.12.0版本.Appium-P…
(1) 执行脚本appium报错:> info: [debug] Emulator not running appium设置中取消勾选launch avd解决 (2)执行脚本python报错:NameError: name 'TouchAction' is not defined 加入from appium.webdriver.common.touch_action import TouchAction…
记录一下使用期间各种报错和解决方法,毕竟搜了半天才找到解决方法.另外提示一下.优先看官方文档. 报错前面都是一样,就是说在处理的时候,服务器发生了一个未知的错误.然后才是具体报错信息 1)selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Unknown error 'a…
此时先检查一下有没有安装Appium-Python-Client,如果没有安装Appium-Python-Client就在控制台输入pip install Appium-Python-Client进行Appium-Python-Client的安装,安装完后在Pycharm中导入appium模块时还会出现ModuleNotFoundError: No module named 'appium'的错误,那就是没有在Pycharm中配置Project Interpreter. 打开Pycharm,Py…