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


TypeScript ProtractorBrowser.wait方法代碼示例

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


在下文中一共展示了ProtractorBrowser.wait方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: waitForElementDisplay

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

示例5: waitUntilAngularPageIsLoaded

	private waitUntilAngularPageIsLoaded(): webDriverPromise.Promise<void> {
		return this.browserInstance.wait(() => this.browserInstance.element(by.css('esf-app router-outlet')).isPresent());
	}
開發者ID:domasmas,項目名稱:esf,代碼行數:3,代碼來源:esf.WebsiteHome.pageObject.ts


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