appium+mac+夜神Android模拟器测试

测试

今天来写个python程序,使用appium测试“超级计算器”这个app, 现在下载这个apk,链接为:
apk链接
代码为

import time
import unittest

from appium import webdriver


class MyTests(unittest.TestCase):
    # 测试开始前执行的方法
    def setUp(self):
        desired_caps = {'platformName': 'Android', # 平台名称
                        'platformVersion': '4.4.2',  # 系统版本号
                        'deviceName': '127.0.0.1:62001',  # 设备名称。如果是真机,在'设置->关于手机->设备名称'里查看
                        'appPackage': 'com.youdao.calculator',  # apk的包名
                        'appActivity': 'com.youdao.calculator.activities.MainActivity'  # activity 名称
                        }
        self.driver = webdriver.Remote("http://127.0.0.1:4723/wd/hub", desired_caps)  # 连接Appium
        self.driver.implicitly_wait(8)

    def test_calculator(self, t=500, n=4):
        """计算器测试"""
        time.sleep(3)
        window = self.driver.get_window_size()
        x0 = window['width'] * 0.8  # 起始x坐标
        x1 = window['width'] * 0.2  # 终止x坐标
        y = window['height'] * 0.5  # y坐标
        for i in range(n):
            self.driver.swipe(x0, y, x1, y, t)
            time.sleep(1)
        self.driver.find_element_by_id('com.youdao.calculator:id/guide_button').click()
        for i in range(6):
            self.driver.find_element_by_accessibility_id('Mathbot Editor').click()
            time.sleep(1)

        btn_xpath = '/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.support.v4.widget.DrawerLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.LinearLayout[2]/android.widget.LinearLayout/android.widget.LinearLayout[3]/android.view.View/android.widget.GridView/android.widget.FrameLayout[{}]/android.widget.FrameLayout'
        self.driver.find_element_by_xpath(btn_xpath.format(7)).click()
        self.driver.find_element_by_xpath(btn_xpath.format(10)).click()
        self.driver.find_element_by_xpath(btn_xpath.format(9)).click()
        self.driver.find_element_by_xpath(btn_xpath.format(25)).click()

        # 7 * 9 = 63
        time.sleep(3)

    # 测试结束后执行的方法
    def tearDown(self):
        self.driver.quit()

使用命令行来获取必要的代码

首先打开模拟器,然后按下图输入:


屏幕快照 2019-08-20 上午9.50.38.png

第二步查看下更详细的参数,包名,


屏幕快照 2019-08-20 上午9.51.18.png

现在来详细解析代码:

首先要设置启动参数:

字段 解释 备注
platformName 平台名称 Android 这里使用的是安卓模拟器
platformVersion 版本号 4.4.2 版本号可以在模拟器中的系统信息中看
deviceName 设备名称 127.0.0.1:62001 这里一般不需要改的
appPackage apk包名的 com.youdao.calculator apk的包名
appActivity activity名称 com.youdao.calculator.activities.MainActivity 上面解释了如何获取

在测试中,我们可以看到app的启动页面出现了,我们需要在app中进行滑动才能继续打开这个app,使用了这行代码:

for i in range(n):
            self.driver.swipe(x0, y, x1, y, t)
            time.sleep(1)

滑动完成后,启动这个app

self.driver.find_element_by_id('com.youdao.calculator:id/guide_button').click()

点击跳过指导:

for i in range(6):
            self.driver.find_element_by_accessibility_id('Mathbot Editor').click()
            time.sleep(1)

然后进行测试,这里测试的是 计算7*9=,对应的代码如下:

btn_xpath = '/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.support.v4.widget.DrawerLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.LinearLayout[2]/android.widget.LinearLayout/android.widget.LinearLayout[3]/android.view.View/android.widget.GridView/android.widget.FrameLayout[{}]/android.widget.FrameLayout'
 self.driver.find_element_by_xpath(btn_xpath.format(7)).click()
  self.driver.find_element_by_xpath(btn_xpath.format(10)).click()
  self.driver.find_element_by_xpath(btn_xpath.format(9)).click()
  self.driver.find_element_by_xpath(btn_xpath.format(25)).click()

当我们测试这个程序,会出现这样的画面:


appium_夜神.gif

启动appium并开启会话,用以找到这些id等:


start_session.gif

你可能感兴趣的:(appium+mac+夜神Android模拟器测试)