當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript protractor.ProtractorBrowser類代碼示例

本文整理匯總了TypeScript中protractor.ProtractorBrowser的典型用法代碼示例。如果您正苦於以下問題:TypeScript ProtractorBrowser類的具體用法?TypeScript ProtractorBrowser怎麽用?TypeScript ProtractorBrowser使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ProtractorBrowser類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: sendKeysOnElement

 async sendKeysOnElement(xpath:string, data:string, timeOut=this.timeOut) {
     console.log("Sending key to element " + xpath)
     var ele:ElementFinder = await this.curBrowser.element(by.xpath(xpath));
     await this.curBrowser.wait(this.until.presenceOf(ele), timeOut, 'Element ' + xpath +' takes too long to appear in the DOM');
     await this.curBrowser.wait(this.until.visibilityOf(ele), timeOut, 'Element '+ xpath +' is not visible');
     await ele.sendKeys(data)
 }
開發者ID:AnhPhamIT,項目名稱:Protractor,代碼行數:7,代碼來源:actionSupport.ts

示例2: clickOnElement

    async clickOnElement(xpath:string, timeout=this.timeOut){
        console.log("Clicking on element " + xpath)
        var ele= await this.curBrowser.element(by.xpath(xpath))
        await this.curBrowser.wait(this.until.presenceOf(ele),timeout, 'Element ' + xpath +' takes too long to appear in the DOM')
        await this.curBrowser.wait(this.until.elementToBeClickable(ele), this.timeOut, 'Element ' + xpath +' is NOT clickable')
        await ele.click()

    }
開發者ID:AnhPhamIT,項目名稱:Protractor,代碼行數:8,代碼來源:actionSupport.ts

示例3: getElementAttribute

 async getElementAttribute(xpath:string, attribute:string):Promise<string>{
     var ele:ElementFinder = await this.curBrowser.element(by.xpath(xpath))
     var attributeValue:string =""
     await this.curBrowser.wait(this.until.presenceOf(ele), this.timeOut, 'Element ' + xpath + ' takes too long to appear in the DOM' )
     
     await ele.getAttribute(attribute).then(function(value){
         console.log("Attribute value: " + value)
         attributeValue = value
     })
     return attributeValue
 }
開發者ID:AnhPhamIT,項目名稱:Protractor,代碼行數:11,代碼來源:actionSupport.ts

示例4: getSerializedContent

	private getSerializedContent(): webDriverPromise.Promise<string> {
		return this.browserInstance.executeScript(function () {
			var sectionCss: string = arguments[0];
			var getAceEditor = (sectionCss: string): AceAjax.Editor => {
				var aceEditorElement: any = document.querySelector(sectionCss);
				var aceEditor: AceAjax.Editor = aceEditorElement.env.editor;
				return aceEditor;
			};

			var aceEditor = getAceEditor(sectionCss);
			return aceEditor.getValue();
		}, this.cssSelector);
	}
開發者ID:domasmas,項目名稱:esf,代碼行數:13,代碼來源:esf.pageObject.AceEditorFixture.ts

示例5: setSerializedContent

	private setSerializedContent(serializedJson: string): webDriverPromise.Promise<void> {
		return this.browserInstance.executeScript(function setAceEditorContentContent() {
			var sectionCss: string = arguments[0];
			var serializedContent: string = arguments[1];
			var getAceEditor = (sectionCss: string): AceAjax.Editor => {
				var aceEditorElement: any = document.querySelector(sectionCss);
				var aceEditor: AceAjax.Editor = aceEditorElement.env.editor;
				return aceEditor;
			};
			var aceEditor = getAceEditor(sectionCss);
			aceEditor.setValue(serializedContent);
			aceEditor.clearSelection();
		}, this.cssSelector, serializedJson);
	}
開發者ID:domasmas,項目名稱:esf,代碼行數:14,代碼來源:esf.pageObject.AceEditorFixture.ts

示例6: getCurrentUrl

 getCurrentUrl(): webDriverPromise.Promise<string> {
     return this.browserInstance.getCurrentUrl();
 }
開發者ID:domasmas,項目名稱:esf,代碼行數:3,代碼來源:esf.WebsiteHome.pageObject.ts

示例7: getRunCommandElement

 private getRunCommandElement(): ElementFinder {
     return this.browserInstance.element(by.css('.run-command'));
 }
開發者ID:domasmas,項目名稱:esf,代碼行數:3,代碼來源:esf.WebsiteHome.pageObject.ts

示例8: getSaveCommandElement

 private getSaveCommandElement(): ElementFinder {
     return this.browserInstance.element(by.css('.save-command'));
 }
開發者ID:domasmas,項目名稱:esf,代碼行數:3,代碼來源:esf.WebsiteHome.pageObject.ts

示例9: hasDocumentsSection

 hasDocumentsSection(): webDriverPromise.Promise<boolean> {
     var documentsSection = this.browserInstance.element(by.cssContainingText('label', 'Documents'));
     return documentsSection.isPresent();
 }
開發者ID:domasmas,項目名稱:esf,代碼行數:4,代碼來源:esf.WebsiteHome.pageObject.ts

示例10: hasResultSection

 hasResultSection(): webDriverPromise.Promise<boolean> {
     var resultSection = this.browserInstance.element(by.cssContainingText('label', 'Result'));
     return resultSection.isPresent();
 }
開發者ID:domasmas,項目名稱:esf,代碼行數:4,代碼來源:esf.WebsiteHome.pageObject.ts


注:本文中的protractor.ProtractorBrowser類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。