我是Protractor的新手。这是我的配置文件
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('tomwhite@gmail.com');
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 :(得分:0)
您的问题是由于没有等待页面执行某些操作。您可以使用Protractor提供的ExpectionConditions
功能实现显式等待。以下是API。
一个肮脏的解决方案是使用sleep()
方法,以便执行暂停一段时间,比如说5秒。因此,您可以尝试browser.sleep(5000)
,这应该可以消除错误。但是,这不是一个好的解决方案。
编辑1:量角器配置文件中定义的rootElement
对象的exports.config
参数必须与包含ng-app
指令的元素匹配。
在你的量角器-conf.js中,请添加
rootElement: '.my-app',
当你的HTML是:
<div ng-app="myApp" class="my-app">
来源:SO Post。
答案 1 :(得分:0)
您正在调用login
之外的it
功能或#34;之前的#{1}}功能。或&#34;之后&#34;属于量角器控制流程的功能。将您的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');
})
});