我按照以下方式尝试了Chrome_Context1 = startApplication("Chrome")
verifyChrome1 = setApplicationContext(Chrome_Context)
nativeType("<Alt + F4>")
服务,但浏览器仍未等待响应。我已经花了将近一天的时间来找出解决方案,我也尝试了$q
。
$timeout
答案 0 :(得分:0)
这是一个示例,我使用回调来处理来自我的实用程序的数据
function get(url, callback, obj) {
$http.get(url, obj)
.then(function (response) {
callback(response.data);
}, function () {
notification.error(PLEASE_CONTACT_SYS_ADMIN);
});
}