使用AppleScript进行简单的自动化测试(三)

  简单的例子

 

  本文通过一个简单的实例介绍AppleScript如何结合inspector进行自动化测试。(*下面将要实现调用系统的计算器进行一个简单的计算,并且判断计算结果是否正确*)

 

Step1.调用计算器

launch application "Calculator"

  

Step2.识别控件

  此时,我们需要用到上一篇中讲到的工具:Accessibility Inspector.

  打开Accessibility Inspector,移动鼠标到我们需要的控件上,比如我们这里指向数字7,按下command+F7,我们会看到相关的属性(如下图)     

       使用AppleScript进行简单的自动化测试(三)

  

Step3.找控件

  此时,我们可以根据AXRoleDescription和AXTitle得到:button “7”就是我们需要的控件。依此类推,根据层级关系我们开始写代码,但是但我们找到button的AXParent:Group时会发现它没有Title。(此时我们记下它的一个属性:AXChildren 有22个Item)

        使用AppleScript进行简单的自动化测试(三)

 

一般我们遇到类似的container,我们需要找到它的AXParent(如下图)

       使用AppleScript进行简单的自动化测试(三)

 

  打开Group的父节点,我们会在AXChildren下面看到有两个Group,进入第一个group,我们会看到它的AXChildren与我们需要的Group的AXChildren不一致,点击Inspector下面的"向上"按钮,于是我们进入第二个Group,此控件正好是我们需要的。因为它没有title,所以我们需要用到Group的index。因为是第二个group,所以:button "7" of group 2 of window “Calculator” 就是我们需要的控件"7"了.

 

  在这里,我们需要注意的一点是:在本地的测试,类似于"Calculator“的字符串是没法用的,那么此时我们就需要用到index了,那么此时可以这样用:button "7" of group 2 of window 1(这里为了方便,button就不用index了)

 

使用AppleScript进行简单的自动化测试(三)
tell application "System Events"
  --调用计算器
launch application
"Calculator" delay 1 tell process "Calculator" if window "Calculator" exists then click button "7" of group 2 of window 1 delay 0.5 click button "+" of group 2 of window 1 delay 0.5 click button "8" of group 2 of window 1 delay 0.5 click button "=" of group 2 of window 1 delay 1 if (value of static text 1 of group 1 of window 1 as integer) = 15 then display dialog "7+8=" & value of static text 1 of group 1 of window 1 end if end if end tell end tell
使用AppleScript进行简单的自动化测试(三)

 

 

 此外,我们想要得到一些属性,可以用如下代码:  

get value of attribute "AXaaaa" of xxx of xx
例如:获取Focused的值: get value of attribute
"AXFocused" of group 2 of window 1

使用AppleScript进行简单的自动化测试(三)

上一篇:Android中的DDMS进行调试


下一篇:Android中Context详解 ---- 你所不知道的Context