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


TypeScript ProtractorBrowser.element方法代碼示例

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


在下文中一共展示了ProtractorBrowser.element方法的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: 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: 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

示例6: getSaveCommandElement

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

示例7: 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

示例8: hasQuerySection

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

示例9: hasMappingSection

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

示例10: getRunCommandElement

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


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