iOS单元测试和UI测试全面解析(34)

发表于:2017-03-31来源:51CTO作者:朱先忠点击数: 标签:单元测试iOS
app.buttons[ Slide ].tap() app.staticTexts[ Getascloseasyoucanto: ].tap() 如果还有其他的语句,则删除它们。 第一行代码的作用是复制你在setup()方法中创建的属性;因为你
app.buttons["Slide"].tap() 
  •  
  • app.staticTexts["Get as close as you can to: "].tap() 
  • 如果还有其他的语句,则删除它们。

    第一行代码的作用是复制你在setup()方法中创建的属性;因为你还不需要点击任何东西,所以也把这第一行删除,还要删除第2行与第3行末尾的“.tap()”。打开["Slide"]邻近的小菜单并选择segmentedControls.buttons["Slide"]。

    于是,你有了如下的代码:

    
    
    1. app.segmentedControls.buttons["Slide"
    2.  
    3. app.staticTexts["Get as close as you can to: "

    进一步修改上述代码,以便创建测试的given部分:

    原文转自:http://mobile.51cto.com/iphone-535758.htm