我嘗試測試: 在Angular應用程序頁面按下按鈕,它將您重定向到其他網站(而不是Angular應用程序)。量角器:獲取非角度頁面的網址
it('should go to 3d party service when i click "auth" button' , function() {
browser.driver.sleep(3000);
element(by.id('files-services-icon')).click();
element(by.id('box-vendor-menu-item')).click();
browser.driver.sleep(2000);
expect(browser.driver.getLocationAbsUrl()).toContain('https://app.box.com/api/oauth2/authorize');
});
,但我得到:
UnknownError: unknown error: angular is not defined
如何可以achived?謝謝!
謝謝你的解釋,但是這也返回相同的錯誤 '不明錯誤:未知的錯誤:角是不是defined' – paka