How to speed up UI test cases in Xcode?

前端 未结 7 1668
自闭症患者
自闭症患者 2020-12-13 14:29

Since Xcode 7 we have a nice API for UI testing. Mostly I\'m satisfied with it. The only concern is related to the speed.

In the beginning an ordina

7条回答
  •  盖世英雄少女心
    2020-12-13 15:15

    Another possibility is to disable animations at all:

    [UIView setAnimationsEnabled:NO];
    

    Swift 3:

    UIView.setAnimationsEnabled(false)
    

提交回复
热议问题