使用量角器测试AngularJS应用时禁用动画

时间:2013-09-17 14:31:49

标签: angularjs jquery-animate protractor

我的AngularJS应用程序中有一些代码,它使用以下动画显示/隐藏一些div:$(el).fadeOut()

如何使用量角器进行测试时禁用动画:http://api.jquery.com/jQuery.fx.off?我可以以某种方式直接从量角器在浏览器中运行那小块代码吗?

1 个答案:

答案 0 :(得分:8)

找到它:

var ptor = protractor.getInstance();
ptor.get("http://localhost:9000/");
ptor.driver.executeScript("$.fx.off = true;");