appium启动

from appium import webdriver
from time import sleep
capabilitise = {
    "platformName": "Android",
    "deviceName": "127.0.0.1:62001",
     "app": "C:\\Users\\Administrator\\Desktop\\app-Center-test_0801.apk",
    "appWaitActivity": "com.geenk.fast.express.ui.activity.LoginActivity",
    "noReset": "true"
"com.geenk.fast.express.ui.activity.LoginActivity",
}
driver=webdriver.Remote("http://127.0.0.1:4723/wd/hub",capabilitise)

剩下的操作和web大同小异

appium启动

上一篇:Spring表单参数绑定中对“is”开头的boolean类型字段的的处理


下一篇:关于Mybatis中Mapper是使用XML还是注解的一些思考