现象: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…
背景 使用Appium Server 1.15.1版本 执行了以下脚本 test = driver.find_element_by_name("自动化测试") print(test.text) 报了以下错误 圈重点 selenium.common.exceptions.InvalidSelectorException: Message: Locator Strategy 'name' is not supported for this session 简译: by_name 这种定位…