在单个测试中处理多个浏览器实例时如何设置 ignoreSynchronization
How to setup the ignoreSynchronization when dealing with multiple browser instances in a signle test
我正在尝试在单个测试中处理多个浏览器实例..一旦在一个浏览器实例中完成操作..我的脚本将打开新的浏览器实例并且为了忽略同步我写了一个函数但是它是不工作,甚至 browserInstance.ignoreSynchronization=true
也不工作。有人可以帮我吗。
规格文件
this.Then(/^User tried to open in new browser instance$/,async function(){
browser2=await utility.openNewBrowser(browser);
//this common function is not working
//utility.ignoreSync(browser2);
browser2.ignoreSynchronization=true;
browser2.get("https://facebook.com");
page2=new facebook(browser2);
console.log(await browser2.getTitle()+" title");
browser2.sleep(5000);
});
忽略同步的常用函数
var utility=function(){
this.openNewBrowser=function(browserInstance){
return browserInstance.forkNewDriverInstance();
}
this.ignoreSync=function(browserInstance){
browserInstance.ignoreSynchroniation=true;
}
}
module.exports=new utility();
错误日志
Error while waiting for Protractor to sync with the page: "both angularJS testability and angular testability are undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details"
我的问题已经通过调用 waitForAngularEnabled 两次 1st 得到解决
第一次应该在创建浏览器时
第二次应该在 URL load
之后
代码
this.ignoreSync=async function(url){
console.log("entered in to ignore");
browserInit.waitForAngularEnabled(false);
await browserInit.get(url);
browserInit.waitForAngularEnabled(false);
console.log("came out from ignore")
}
这是我的解决方案,如果有人有更好的解决方案,请随时post。
我正在尝试在单个测试中处理多个浏览器实例..一旦在一个浏览器实例中完成操作..我的脚本将打开新的浏览器实例并且为了忽略同步我写了一个函数但是它是不工作,甚至 browserInstance.ignoreSynchronization=true
也不工作。有人可以帮我吗。
规格文件
this.Then(/^User tried to open in new browser instance$/,async function(){
browser2=await utility.openNewBrowser(browser);
//this common function is not working
//utility.ignoreSync(browser2);
browser2.ignoreSynchronization=true;
browser2.get("https://facebook.com");
page2=new facebook(browser2);
console.log(await browser2.getTitle()+" title");
browser2.sleep(5000);
});
忽略同步的常用函数
var utility=function(){
this.openNewBrowser=function(browserInstance){
return browserInstance.forkNewDriverInstance();
}
this.ignoreSync=function(browserInstance){
browserInstance.ignoreSynchroniation=true;
}
}
module.exports=new utility();
错误日志
Error while waiting for Protractor to sync with the page: "both angularJS testability and angular testability are undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details"
我的问题已经通过调用 waitForAngularEnabled 两次 1st 得到解决
第一次应该在创建浏览器时 第二次应该在 URL load
之后代码
this.ignoreSync=async function(url){
console.log("entered in to ignore");
browserInit.waitForAngularEnabled(false);
await browserInit.get(url);
browserInit.waitForAngularEnabled(false);
console.log("came out from ignore")
}
这是我的解决方案,如果有人有更好的解决方案,请随时post。