我怎样才能加快我的动画,使我的 EarlGrey 测试套件 运行 更快

How can I speed up my animations to make my EarlGrey test suite run faster

我在 GREYConfiguration 中看到下面的 API 说 EarlGrey 默认 t运行cates CALayer 动画超过 10 秒 -

/**
 *  Configuration for setting max allowable animation duration (in seconds) for any CALayer based
 *  animation. Animations exceeding the specified time will have their duration truncated to value
 *  specified by this config.
 *
 *  Accepted values: @c double (negative values shouldn't be used)
 *  Default value: 10.0
 */
GREY_EXTERN NSString *const kGREYConfigKeyCALayerMaxAnimationDuration;

我正在开发一个小型游戏应用程序,其中包含许多此类动画。我注意到当我启用动画时我的测试需要很长时间才能 运行,这是我的 UI 测试所必需的。我知道我可以使用 UIApplication.sharedApplication.keyWindow.layer.speed 更改整个应用程序的动画速度。有什么办法可以只为我的 EarlGrey 测试更改它吗?

把你的UIApplication.sharedApplication.keyWindow.layer.speed放在条件语句后面:

#if EARLGREY_ENV
UIApplication.sharedApplication.keyWindow.layer.speed = 100
#endif

这行代码只会在应用 运行 通过 Earl Grey 时执行。

有关在伯爵茶中处理动画的更多信息,请参阅 我应该如何处理动画? 下的 their FAQs