2017-06-14 134 views
1

我是量角器新手。下面是我的配置文件運行量角器測試時出現問題

config

exports.config = { 
seleniumAddress: 'http://localhost:4444/wd/hub', 

capabilities: { 
    'browserName': 'chrome' 
}, 

specs: ['./protractor-tests/*.js'], 

jasmineNodeOpts: { 
    showColors: true 
} 
} 

在這裏,我有我在哪里哪里測試通過Outlook用戶登錄,當點擊登錄它重定向到主頁上登錄的情況。

登錄測試:

exports.login = function() { 
describe('Login Test', function() { 
    beforeEach(function() { 
     browser.get('http://domain/login'); 
    }); 
    afterEach(function() { 
     browser.ignoreSynchronization = false; 
    }); 
    it('It should redirect to outlook for auth', function() { 
     browser.ignoreSynchronization = true; 
     var currentUrl; 
     browser.getCurrentUrl().then(function(url) { 
      currentUrl = url; 
     }).then(function() { 
      browser.wait(function() { 
       return browser.getCurrentUrl().then(function(url) { 
        return url !== currentUrl; 
       }); 
      }); 
     }).then(function() { 
      setTimeout(function() { 
       var userName = element(By.xpath('/html/body/div[1]/header/div[1]/section/div[2]/apt-user-profile/div/div/button[1]/span/span')); 
       if (userName) 
        expect(browser.getCurrentUrl()).toContain('http://domain/home'); 
       else 
        expect(browser.getCurrentUrl()).toContain('https://login.microsoftonline.com'); 
      }, 10000); 


     }); 
    }); 

    it('It should login into the application and display user as Tom White', function() { 
     setTimeout(function() { 
      browser.driver.findElement(by.id('cred_userid_inputtext')).sendKeys('[email protected]'); 
      browser.driver.findElement(by.id('cred_password_inputtext')).sendKeys('****'); 
      browser.driver.findElement(by.id('cred_sign_in_button')).click(); 
      var userName = element(By.xpath('/html/body/div[1]/header/div[1]/section/div[2]/apt-user-profile/div/div/button[1]/span/span')); 
      expect(userName.getText()).toEqual('Hello Tom White'); 
     }, 10000); 
    }); 

}); 
} 

這些測試案例實際上是工作正常,但如果在主頁上,我還需要點擊重定向我是錯誤

沒有一些其他的網頁元素上
Failed: javascript error: document unloaded while waiting for result 

家庭測試:

var loginPage = require('./loginTest.js'); 

describe('Home Test', function() { 
    loginPage.login(); 
    it('It should click product', function() { 

      var productMenu = element(By.xpath('/html/body/div[1]/headerdiv[1]/section/div[1]/apt-nav-bar/div/div[2]/div[2]/ul/li[2]/a/span')); 
      productMenu.click(); 
      expect(browser.getCurrentUrl()).not.toEqual('http://domain/home'); 
      expect(browser.getCurrentUrl()).toEqual('http://domain/products'); 


     }) 

}); 

任何幫助將高度讚賞。

回答

0

你的問題是由於沒有等待頁面做些什麼。您可以使用量角器提供的ExpectionConditions功能實現明確的等待。以下是API的鏈接。

骯髒的解決方案是使用sleep()方法,以便執行暫停一段時間,例如5秒。所以你可以試試browser.sleep(5000),這應該會消除這個錯誤。但是,這不是一個好的解決方案。

編輯1:在量角器配置文件中定義的exports.config對象的參數必須與包含您的ng-app指令的元素匹配。

在你的量角器,conf.js,請加

rootElement: '.my-app', 

當你的HTML是:

<div ng-app="myApp" class="my-app"> 

來源:SO Post

+0

,如果我做browser.sleep(5000) 我m如果失敗的錯誤:錯誤而等待量角器與頁同步:「window.angular未定義 –

+0

更新的答案,請參閱上文。 – demouser123

0

您正在調用it之外的login功能或在量角器控制流程下的「之前」或「之後」功能。移動你的loginPage.login();呼叫beforeEach()beforeAll()

describe('Home Test', function() { 
    beforeEach(function() { 
     loginPage.login(); 
    }); 

    it('It should click product', function() { 
     var productMenu = element(By.xpath('/html/body/div[1]/headerdiv[1]/section/div[1]/apt-nav-bar/div/div[2]/div[2]/ul/li[2]/a/span')); 
     productMenu.click(); 
     expect(browser.getCurrentUrl()).not.toEqual('http://domain/home'); 
     expect(browser.getCurrentUrl()).toEqual('http://domain/products'); 
    }) 
}); 
相關問題