随笔分类 -  Appium

摘要:1.手机开启【开发者选项】 2.【开发者选项】打开【USB调试】 有个坑:10分钟不使用,将自动关闭 3.USB连接到电脑,选择模式为【仅充电】 4.电脑安装OPPO驱动 坑:安装进度卡在95%三分钟,等... 5.USB重连,手机能提示确认连接了,确认 List of devices attach 阅读全文
posted @ 2019-05-30 10:03 bamboo233 阅读(2220) 评论(0) 推荐(0)
摘要:安装appium时,直接从github上下载的appium desktop windows版本,安装后,从打开桌面端Server,能启动服务,appium doctor也能正常运行。 但奇怪的地方来了,在调试命令行启动时,无法正常运行,看了下,确实桌面版启动程序没有加入path路径,于是手动加了; 阅读全文
posted @ 2019-05-30 08:55 bamboo233 阅读(2652) 评论(0) 推荐(0)
摘要:1.pyCharm识别不到appium python client 解决:新建项目注意选择环境,查看Project Interpreter中是否识别到了appium python client 还碰到了个问题:后来识别到了,但是版本不对,我安装的是最新的0.39版本,但识别到的是0.20版本,引用w 阅读全文
posted @ 2019-03-09 19:47 bamboo233 阅读(694) 评论(0) 推荐(0)
摘要:Device Activity Start Activity Start an Android activity by providing package name and activity name Java: driver.startActivity(new Activity("com.exam 阅读全文
posted @ 2019-03-07 09:02 bamboo233 阅读(1202) 评论(0) 推荐(0)
摘要:Session Create New Session Java: DesiredCapabilities desiredCapabilities = new DesiredCapabilities(); desiredCapabilities.setCapability(MobileCapabili 阅读全文
posted @ 2019-03-07 08:52 bamboo233 阅读(823) 评论(0) 推荐(0)
摘要:Execute Mobile Command Java: Python: Description Execute a variety of native, mobile commands that aren't associated with a specific endpoint Syntax i 阅读全文
posted @ 2019-03-07 08:46 bamboo233 阅读(536) 评论(0) 推荐(0)
摘要:Status Java: Python: Description Returns information about whether a remote end is in a state in which it can create new sessions and can additionally 阅读全文
posted @ 2019-03-07 08:44 bamboo233 阅读(449) 评论(0) 推荐(0)