当前位置: 首页>>代码示例>>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;未经允许,请勿转载。