本文整理汇总了TypeScript中protractor.By.name方法的典型用法代码示例。如果您正苦于以下问题:TypeScript By.name方法的具体用法?TypeScript By.name怎么用?TypeScript By.name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类protractor.By
的用法示例。
在下文中一共展示了By.name方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should login', function() {
//Find page element
var userNameField = p.browser.element(p.By.name('username'));
var userPassField = p.browser.element(p.By.name('password'));
var userLoginBtn = p.browser.element(p.By.id('login-button'));
//Fill input keys
userNameField.sendKeys('amishkin')
userPassField.sendKeys('temp')
//Ensure fields contain what is entered
expect(userNameField.getAttribute('value')).to.eventually.equal('amishkin');
expect(userPassField.getAttribute('value')).to.eventually.equal('temp');
//Click to sign in
userLoginBtn.click().then(function() {
p.browser.waitForAngular();
expect(p.browser.getCurrentUrl()).to.eventually.equal('http://localhost:3000/home');
});
});
示例2:
By.id(0);
By.id(true);
By.id(() => {});
By.id();
By.id('', '');
By.linkText(0);
By.linkText(true);
By.linkText(() => {});
By.linkText();
By.linkText('', '');
By.js(0);
By.js(true);
By.js(() => {});
By.js();
By.js('', '');
By.name(0);
By.name(true);
By.name(() => {});
By.name();
By.name('', '');
By.partialLinkText(0);
By.partialLinkText(true);
By.partialLinkText(() => {});
By.partialLinkText();
By.partialLinkText('', '');
By.tagName(0);
By.tagName(true);
By.tagName(() => {});
By.tagName();
By.tagName('', '');
By.xpath(0);
示例3:
By.binding('bindingDescriptor');
By.exactBinding('bindingDescriptor');
By.model('model');
By.buttonText('searchText');
By.partialButtonText('searchText');
By.repeater('repeatDescriptor');
By.exactRepeater('repeatDescriptor');
By.cssContainingText('cssSelector', 'searchText');
By.options('optionsDescriptor');
By.deepCss('selector');
By.className('className');
By.css('css');
By.id('id');
By.linkText('linkText');
By.js('js');
By.name('name');
By.partialLinkText('partialText');
By.tagName('tagName');
By.xpath('xpath');
ExpectedConditions.not(() => {});
ExpectedConditions.and(() => {});
ExpectedConditions.and(() => {},() => {});
ExpectedConditions.or(() => {});
ExpectedConditions.or(() => {},() => {});
ExpectedConditions.alertIsPresent();
ExpectedConditions.elementToBeClickable(element(by.css('')));
ExpectedConditions.textToBePresentInElement(element(by.css('')), 'text');
ExpectedConditions.textToBePresentInElementValue(element(by.css('')), 'text');
ExpectedConditions.titleContains('title');
ExpectedConditions.presenceOf(element(by.css('')));
ExpectedConditions.stalenessOf(element(by.css('')));