org.openqa.selenium.InvalidSelectorException: Locator Strategy 'name' is not supported for this session
1. 换其他定位方式,比如用xpath代替
2.不用换定位方式不用换之前脚本的方法来完成无缝升级appium版本的定位方式
修改源码解决问题,修改方法如下:
修改路径:
C:UsersAdministratorAppDataRoaming pm ode_modulesappium ode_modulesappium-android-driveruildlib
修改文件:driver.js
只需要修改其中一行即可
this.locatorStrategies = ['xpath', 'id', 'class name', 'accessibility id', '-android uiautomator','name'];--------再此行代码中添加上name,如下
修改完成之后,保存文件,再次重启appium服务,就可以继续使用by_name定位