用selenium进行安卓浏览器自动化测试
1.用数据线将安卓和电脑连接
2.用adb之类展示连接的设备id
在cmd中输如adb devices (如果adb无效,请先配置好安卓sdk)
3.为设备设置端口映射,为了让selenium能够和服务器交流
输入自己的设备id号,我这里是IV6TIB9P8HSC7DDU
1 |
adb -s IV6TIB9P8HSC7DDU forward tcp:8080 tcp:8080 |
在手机上安卓selenium-server.apk并启动,在电脑上运行下面的代码就OK了
http://yunpan.cn/cVcCDAhhyPzzk 访问密码 a100
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.remote.RemoteWebDriver; import java.net.MalformedURLException; import java.net.URL; import java.util.List; /** * Created by zsn on 2015/4/8. */ public class AndroidWeb { public static void main(String[] args) { //选择远程设备为android,还有iphone,ipad等等 DesiredCapabilities capability = DesiredCapabilities.android(); WebDriver driver = null; try { //连接远程设备,ip地址为手机的ip地址,端口为刚才映射的8080,/wd/hub默认写法 driver = new RemoteWebDriver( new URL("http://172.22.242.104:8080/wd/hub"), capability); } catch (MalformedURLException e) { e.printStackTrace(); } //打开百度网页 driver.get("http://www.baidu.com"); //设置搜索词 WebElement input = driver.findElement(By.name("word")); input.sendKeys("site:izsn.xyz"); //设置点击查询 WebElement button = driver.findElement(By.tagName("button")); button.click(); } } |
插播一下怎么查看手机ip地址
最简单的方式就是进入连接的wifi详情直接查看
转载请注明:软件测试 » 用selenium进行安卓浏览器自动化测试
标签: RemoteWebDriver, selenium