Appium的介绍
Appium是一款开源的自动化测试工具,其支持iOS和安卓平台上的原生的,基于移动浏览器的,混合的应用。
1、 使用appium进行自动化测试的好处 Appium在不同平台中使用了标准的自动化APIs,所以在跨平台时,不需要重新编译或者修改自己的应用。Appium支持Selenium WebDriver支持的所有语言,如java、Object-C、JavaScript、Php、Python、Ruby、C#、Clojure,或者Perl语言,更可以使用Selenium WebDriver的Api。Appium支持任何一种测试框架.Appium实现了真正的跨平台自动化测试。(本文主要介绍Python的用法)
2、Appium架构Appium 是一个用Node.js编写的HTTP server,它创建、并管理多个 WebDriver sessions 来和不同平台交互,如 iOS ,Android等等.
- Appium 开始一个测试后,就会在被测设备(手机)上启动一个 server ,监听来自 Appium server的指令. 每种平台像 iOS 和Android都有不同的运行、和交互方式。所以Appium会用某个桩程序“侵入”该平台,并接受指令,来完成测试用例的运行。
工作原理
启动驾考宝典
环境准备:
1.jdk1.8 appium-desktop android SDK +驾考宝典的安卓apk包
2.环境变量:
##java env
JAVA_HOME "C:\Program Files\Java\jdk1.8.0_181"
CLASSPATH .;%Java_Home%\bin;%Java_Home%\lib\dt.jar;%Java_Home%\lib\tools.jar
path %JAVA_HOME%\bin
##android sdk
ANDROID_HOME "C:\Program Files (x86)\Android\android-sdk"
%ANDROID_HOME%\platform-tools
%ANDROID_HOME%\tools
##MAVEN
M2_HOME C:\apache-maven-3.6.3
path %MAVEN_HOME%\bin;%path%
环境搭建
1.安装夜神模拟器;
2.adb 安装软件包(adb install xxx.apk)
2.获取apk的包名( aapt dump badging xxx.apk)
3.maven导入java-client; selenium-java
<!-- https://mvnrepository.com/artifact/io.appium/java-client -->
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>7.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
构造脚本
package firstAppium;
import io.appium.java_client.android.AndroidDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import org.w3c.dom.Element;
import java.net.URL;
import java.util.List;
import java.util.Set;
public class AppiumTest {
public static AndroidDriver<WebElement> androidDriver;
@BeforeTest
public static void setUp(){
/*1.添加配置
2.创建驱动
*/
//1.1.创建配置对象
DesiredCapabilities desiredCapabilities =new DesiredCapabilities();
//1.2.添加配置
desiredCapabilities.setCapability("deviceName","127.0.0.1:62001");
//1.3.platform:测试平台Andriod or ios
desiredCapabilities.setCapability("platForm","Android");
//1.4.appPackage 找到要测试的App
desiredCapabilities.setCapability("appPackage","com.handsgo.jiakao.android");
//1.5.appActivity 测试app的启动入口
desiredCapabilities.setCapability("appActivity","com.handsgo.jiakao.android.splash.Login");
//2.创建驱动
try{
androidDriver = new AndroidDriver<WebElement>(
new URL("http://127.0.0.1:4723/wd/hub"),desiredCapabilities);
}catch (Exception driver){
System.out.println("android driver object : url , configration maybe have some things is wrong ");
}
}
@Test
public static void testJiakao(){
//等待元素加载完毕
androidDriver.findElementById("com.handsgo.jiakao.android:id/btn_agree").click();
try{
Thread.sleep(15000);
}catch (Exception e){
e.printStackTrace();
}
androidDriver.findElementById("com.handsgo.jiakao.android:id/permission_btn").click();
//1.找到定位城市文本。并且点击
androidDriver.findElementById("com.handsgo.jiakao.android:id/cityTv").click();
//2.找到城市搜索框,并且输入“长沙”
List<WebElement> listElements = androidDriver.findElementsById("com.handsgo.jiakao.android:id/item_title");
listElements.get(2).click();
//androidDriver.findElementById("com.handsgo.jiakao.android:id/edt_search_q").sendKeys("长");
//3.找到搜索结果中的“长沙”,并且点击
//androidDriver.findElementById("com.handsgo.jiakao.android:id/item_title").click();
//4.性别选择男性
androidDriver.findElementById("com.handsgo.jiakao.android:id/maleTv");
//5.选择摩托车
androidDriver.findElementById("com.handsgo.jiakao.android:id/itemMoto");
//6.选择网约车
androidDriver.findElementById("com.handsgo.jiakao.android:id/itemWangyue");
//7.点击下一步
androidDriver.findElementById("com.handsgo.jiakao.android:id/okBtn").click();
try{
Thread.sleep(2000);
}catch (Exception e){
e.printStackTrace();
}
String expected = "cn.mucang.android.mars.student.refactor.business.school.activity.SelectBaoMingStatusActivity";
String actul = androidDriver.currentActivity();
Assert.assertEquals(actul,expected);
}
@AfterTest
public void afterTest(){
androidDriver.quit();
}
}