• 技术分享 | app自动化测试(Android)-- 特殊控件 Toast 识别


    Toast 是 Android 系统中的一种消息框类型,它属于一种轻量级的消息提示,常常以小弹框的形式出现,一般出现 1 到 2 秒会自动消失,可以出现在屏幕上中下任意位置。它不同于 Dialog,它没有焦点。Toast 的设计思想是尽可能的不引人注意,同时还向用户显示信息希望他们看到。

    测试 APP 下载地址:

    https://github.com/appium/sample-code/raw/master/sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk

    首先将上面地址的 apk 包下载到本地,并安装到模拟器中;在模拟器中打开 API Demos,依次点击“Views”-“Popup Menu”-“Make a Popup”-“Search”,就会弹出消息提示框,如图:

    上图中 “Clicked popup menu item Search” 就是 Toast,但它通常在页面上停留的时间只有 2 秒左右,通过 Appium Inspector 一般不容易获取到这个元素。

    获取Toast

    在模拟器中打开 API Demos 应用,依次点击 “Views”-“Popup Menu”-“Make a Popup”-“Search”,查看页面 Toast 元素。

    示例代码如下:

    1. # 设置 capabilities
    2. caps = {}
    3. caps["platformName"] = "Android"
    4. caps["appPackage"] = "io.appium.android.apis"
    5. caps["appActivity"] = ".ApiDemos"
    6. #必须使用uiautomator2框架
    7. caps["automationName"] = "uiautomator2"
    8. caps["deviceName"] = "hogwarts"
    9. # 与Appium Server 建立连接
    10. driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
    11. # 设置隐式等待
    12. driver.implicitly_wait(5)
    13. # 点击 Views
    14. driver.find_element_by_accessibility_id("Views").click()
    15. # 滑动页面
    16. TouchAction(driver).press(380, 1150)\
    17. .move_to(380, 150).release().perform()
    18. # 点击 `Popup Menu` 项目
    19. driver.find_element_by_xpath(
    20. "//*[@content-desc='Popup Menu']").click()
    21. # 点击 `Make a Popup`
    22. driver.find_element_by_xpath(
    23. "//*[@content-desc='Make a Popup!']").click()
    24. # 点击 'Search'
    25. driver.find_element_by_xpath("//*[contains(@text,'Search')]").click()
    26. toastXPath = "//*[@class='android.widget.Toast']"
    27. #打印 toastXPath
    28. print(driver.find_element_by_xpath(toastXPath))
    29. #打印 toastXPath 获取的 text
    30. print(driver.find_element_by_xpath(toastXPath).text)
    1. @BeforeAll
    2. public static void setUp() throws MalformedURLException {
    3. DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
    4. desiredCapabilities.setCapability("platformName", "Android");
    5. desiredCapabilities.setCapability("appPackage", "io.appium.android.apis");
    6. desiredCapabilities.setCapability("appActivity", ".ApiDemos");
    7. desiredCapabilities.setCapability("automationName", "uiautomator2");
    8. desiredCapabilities.setCapability("deviceName", "hogwarts");
    9. URL remoteUrl = new URL("http://127.0.0.1:4723/wd/hub");
    10. driver = new AndroidDriver(remoteUrl, desiredCapabilities);
    11. driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
    12. }
    13. @Test
    14. public void toastTest() {
    15. //点击 Views
    16. driver.findElement(MobileBy.AccessibilityId("Views")).click();
    17. //滑动页面
    18. TouchAction action = new TouchAction(driver);
    19. PointOption pressPointOne = PointOption.point(380, 1150);
    20. PointOption movePointOne = PointOption.point(380, 150);
    21. action.press(pressPointOne).moveTo(movePointOne).release();
    22. //点击 `Popup Menu` 项目
    23. driver.findElement(By.xpath("//*[@content-desc='Popup Menu']")).click();
    24. //点击 `Make a Popup`
    25. driver.findElement(By.xpath("//*[@content-desc='Make a Popup!']")).click();
    26. //点击 'Search'
    27. driver.findElement(By.xpath("//*[contains(@text,'Search')]")).click();
    28. By toastXPath = By.xpath("//*[@class='android.widget.Toast']");
    29. //打印 toastXPath
    30. System.out.println(driver.findElement(toastXPath));
    31. //打印 toastXPath 获取的 text
    32. System.out.println(driver.findElement(toastXPath).getText());
    33. }

    这里定位 Toast 使用了 Xpath 表达式进行定位,因为 Toast 的 class 属性比较特殊,在当前页面上一般会出现一次 class=“android.widget.Toast” 的元素,所以使用 Xpath 定位方式搭配隐式等待就可以很轻松的可以定位到。

    查看执行结果

    最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:

    这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你! 

  • 相关阅读:
    前端 html 中的 meta 标签有哪些用处?
    操作系统——文件管理
    如何推广你的联盟计划:10种行之有效的营销方式
    【Android】在渲染生效前提前测量View大小
    Python3极简教程(一小时学完)上
    C++教程(05)——数据类型
    html中如何用vue语法,并使用UI组件库 ,html中引入vue+ant-design-vue或者vue+element-plus
    webpack5内部是如何处理模块化的?
    jq获取和设置偏移量:offset()、position()
    【AD9361】设置带宽
  • 原文地址:https://blog.csdn.net/2301_78843735/article/details/134297553