我正在尝试在 Internet Explorer 9 上运行一些测试(使用 Protractor) - 每个包含“driver.executeScript”的测试都会给出错误:等待异步脚本超时(警告:服务器未提供任何堆栈跟踪信息)。其他测试工作得很好。
似乎 IE 不理解我在函数末尾添加的超时限制(20000 毫秒) - 超时在约 11 秒后到期。
是否有任何 WebdriverJS 代码行让它等待异步执行?
所有测试都可以在 Firefox 上完美运行。
代码:
#### this one works ####
it("should display selected Date Filter", function() {
ptor.get("data-entry?readingType=no readings after");
var sel = ptor.findElement(protractor.By.selectedOption('data.dateFilterType'));
expect(sel.getText()).toEqual('No readings after date');
}, 20000);
#### this one doesn't work ####
it("should display Selected Locations", function() {
ptor.get("data-entry?locationIds=254,216");
ptor.waitForAngular();
ptor.driver.executeScript("$('#locations').show();");
ptor.sleep(10000);
ptor.findElements(protractor.By.selectedOption('data.locationIds')).then( function(arr) {
expect(arr[0].getText()).toBe('Bovendijk');
expect(arr[1].getText()).toBe('Centrum Locatie');
});
}, 20000);