51Testing软件测试论坛
标题: 安卓appium无线调试 [打印本页]
作者: Mario洁 时间: 2018-7-6 14:58
标题: 安卓appium无线调试
1.手机Root
Root就是系统中的唯一超级用户,获取root权限,可以随意启动或停止某个进程,删除或增加用户,增加和禁用硬件。对于安卓系统手机来说,某些手机厂商会在手机内植入固定应用软件,达到推广宣传的作用,但这给手机使用者造成了不方便,普通用户是无法删除它们的,这就需要root.简单来说,获取ROOT权限就是让手机使用者更为随心所欲的使用手机,那么,怎么才能给手机root,获取权限呢?这其实很简单,root工具有很多,这里给大家介绍一个简单的方法。
root.qq.com,下载安装一键root工具 ,或者金山助手都可以
2.adbWireless无线使用ADB
安装完后需要开启,即点击圆形按钮,连接后便会显示IP地址
[attach]117038[/attach]
3.(1) cmd 下输入:adb connnet 10.6.125.74:5555连接到手机
[attach]117039[/attach]
- # _*_ coding:utf-8 _*_
- from appium import webdriver
- from appium.webdriver.mobilecommand import MobileCommand
-
- import time
- import os
- desired_caps = {}
- desired_caps['platformName'] = 'Android'
- desired_caps['platformVersion'] = '4.4.2'
- desired_caps['deviceName'] ='10.6.125.74:5555'
- desired_caps['appPackage'] ='com.android.browser'
- desired_caps['appActivity'] ='.BrowserActivity'
- desired_caps['browserName']='Chrome'
- desired_caps['unicodeKeyboard'] = True
- desired_caps['resetKeyboard'] = True
- desired_caps['newCommandTimeout'] = 7200
- driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
-
- time.sleep(5)
-
- driver.get("https://m.baidu.com/")
- time.sleep(5)
- driver.find_element_by_css_selector("#index-kw").send_keys("test")
- time.sleep(5)
复制代码
执行脚本后,可以看到server端已经找到设备
[attach]117040[/attach]
谷歌浏览器中成功打开百度,并输入test
[attach]117041[/attach]
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) |
Powered by Discuz! X3.2 |