如何使用量角器进入不包含角度的页面?我的测试看起来像这样:
browser.driver.get('https://www.mysitewithlogin.com');
结果是:
Message:Error while waiting for Protractor to sync with the page: "angular could not be found on the window"
因此网站以登录页面开头,不包含角度。是不是可能??
答案 0 :(得分:1)
在启动应用程序之前使用以下代码行。
browser.ignoreSynchronization=true;
通过写上面的行,它不会等待角度。它将应用视为普通应用。
答案 1 :(得分:-1)
您可以使用此行"browser.navigate().back();"