当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript By.name方法代码示例

本文整理汇总了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');
		});
	});
开发者ID:ValueChart,项目名称:WebValueCharts,代码行数:21,代码来源:login.test.ts

示例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);
开发者ID:HelloMQL,项目名称:protractor,代码行数:31,代码来源:test_fail_by.ts

示例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('')));
开发者ID:HelloMQL,项目名称:protractor,代码行数:31,代码来源:test_pass.ts


注:本文中的protractor.By.name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。