protractor是不是可以用jasmine里的所有方法?
我看到有些protractor的demo,出现了expect().toMatch(),expect().toBe(),而protractor的API里没有这2个方法,这2个方法貌似是jasmine的。
所以,我的疑问是,是不是jasmine的所有方法protractor都可以用?
describe('HealthSense POC Grid', function() {
beforeEach(function() {
browser.get('http://Your Application URL');
ptor = protractor.getInstance();
});
it('should click on the grid link', function() {
element(by.xpath('//a[contains(text(),"Grid")]')).click();
expect(element(by.xpath('//h1')).getText()).toEqual('Master Grid');
});
it('should enter ID in filter', function() {
ptor.actions().sendKeys(protractor.Key.HOME).perform();
element(by.model('Model.ID')).sendKeys('10');
results = element.all(by.repeater('value in testValues'));
expect(results.count()).toEqual(5);
element(by.model('Model.ID')).clear();
ptor.actions().sendKeys(protractor.Key.SPACE).perform();
});
it('should change the number of records per page to 10', function(){
element(by.xpath('//select')).click();
element(by.css('option[value="10"]')).click();
results1 = element.all(by.repeater('value in testValues'));
expect(results1.count()).toEqual(10);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论