zoukankan      html  css  js  c++  java
  • HierarchyViewer for iOS 2.0 BETA Introduction

    We know HierarchyViewer is an useful tool in Android SDK. The developer and tester, who haven’t the source code of the application, also can get the the hierarchy view of activities, and every properties and screenshot. Can we have similiar tools for iOS? now the answer is sure.

     

    HierarchyViewer for iOS is an open source tool developed by Vowei, use GPL v3 protocol. It is based on eclipse RCP framework, support Mac OS X, Windows and Linux. Following is the screenshot under Mac OS X:

    image

    (HierarchyViewer 1.0)

     

    For English User, I am sorry currently we haven’t English version, but we are working on it now. I believe you can easy to use Chinese version after you read this acticle.

     

    Let us begin to introduce it. HierarchyViewer for iOS have two kind of data source: one is UIAutomation script result log file –- contains Automation Results.plist file and screenshots, generating hierarchyviewer from UIAutomation result log have been implemented since 1.0. the other way is achieving from running app on iOS simulator directly, this is the new feature of 2.0.

     

    Open Log File

    Open image on the toolbar, A file dialog will be opened, select an Automation Results.plist file.

    image

     

    Then, you can view all the UI element hierarchy in our tool.

     

    How to Create Log File

    How can we make the .plist file have UI element information? We must insert following code into the script whatever you interested,it will log all elements structure into result log file:

    target.logElementTree()

     

    Then, when you Execute it:

    image

     

    And export the result log to specified folder:

    image

     

    After that, you can open the log file you just created. (There are a log file under /HierarchyViewer-4-iOS/hierarchyviewerlib.test/src/Logs)

     

    2.0 New Feature: achieving hierarchy view from running app on iOS simulator

    The new feature of 2.0 can be used only on Mac OS X, before you use it, make sure Instruments and iOS simulator is installed on the system.

     

    There are 3 buttons is added into toolbar in 2.0:

    image

     

    Start the simulator and app

    Clickrun_exc, the file dialog will be opened:

    image

     

    Select and open an iOS simulator App, the simulator will kick off and the app will be load:

    Screen Shot 2012-09-25 at 11.12.48 AM

     

    Refresh the Hierarchy view

    When your UI is changed, you can click the green fresh button RefreshArrow_Green, to refresh the hierarchy view.

    image

     

    Terminate the simulator and app

    Clickterminate, will close the simulator.

     

    Other features

    HierarchyViewer for iOS 2.0 have some othre useful features, for example:

    Generating script calls.

    Right click the node in the hierarchy view, It can generate the element call and save in the clipboard:

    imageimage

     

    In clipboard:

    target.frontMostApp().windows()[0].tableViews("Empty list").groups("Advanced Options").elements("Advanced Options")

     

    Generating and test iQuery:

    iQuery is a jquery-like library developed by Vowei, used to query the iOS and Android UI element. HierarchyViewer have an iquery generator which used to generate and test iQuery statement:

    image

  • 相关阅读:
    PyQT5速成教程-4 Qt Designer实战[上]
    使用Qt Designer进行布局
    PyCharm+QT Designer整合
    Qt Designer 的使用
    Python | 一行命令生成动态二维码
    Python 标准库、第三方库
    Python list列表的常用操作方法
    Python+Selenium 自动化测试获取测试报告内容并发送邮件
    ”Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules“解决方案
    linux查找符合条件的文件并删除
  • 原文地址:https://www.cnblogs.com/Binhua-Liu/p/3266994.html
Copyright © 2011-2022 走看看