有类似的问题(链接如下),但没有一个能解决这个问题。我正在为 Ionic Project 编写量角器测试。当离子加载对话框出现和消失时,我需要执行测试。
我已经创建了一个包含应用程序的基本骨架和需要进行的测试的存储库。解决这个问题,你就解决了问题(我在下面描述了问题):https ://github.com/TmanTman/StackoverflowQ 。只需在 conf.js 中为您的系统调整 Chrome 的路径即可。
为了模拟异步 Ionic Loading 对话框,我只需将其添加到空白 Ionic 项目中的控制器中:
$interval( function() {
$ionicLoading.show({
template: 'Async ionicLoading',
duration: 5000
});
}, 5000 , 1);
})
我需要让量角器等待对话框出现,做一些测试,等待对话框消失,然后再做一些测试。我在测试文件中的最新尝试是:
it('should only test when ionicLoading appears', function() {
browser.wait(function(){
return element(by.css('.loading-container.visible.active')).isPresent();
}, 10000);
var ionicLoadingText = element(by.css('.loading-container.visible.active')).getText();
expect(ionicLoadingText).toEqual('Async IonicLoading');
})
it('should only test once ionicLoading disappears', function() {
browser.wait(function() {
var deferred = protractor.promise.defer();
var q = element(by.css('.loading-container.visible.active')).isPresent()
q.then( function (isPresent) {
deferred.fulfill(!isPresent);
});
return deferred.promise;
});
expect(1).toEqual(1);
})
我试图避免使用同步睡眠功能,因为我的代码是高度异步的。我尝试了无数种变化,但我无法让它发挥作用。我用于信息的链接包括: