本文整理汇总了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)
}
示例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()
}
示例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
}
示例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');
}
示例5: hasResultSection
hasResultSection(): webDriverPromise.Promise<boolean> {
var resultSection = this.browserInstance.element(by.cssContainingText('label', 'Result'));
return resultSection.isPresent();
}
示例6: getSaveCommandElement
private getSaveCommandElement(): ElementFinder {
return this.browserInstance.element(by.css('.save-command'));
}
示例7: hasDocumentsSection
hasDocumentsSection(): webDriverPromise.Promise<boolean> {
var documentsSection = this.browserInstance.element(by.cssContainingText('label', 'Documents'));
return documentsSection.isPresent();
}
示例8: hasQuerySection
hasQuerySection(): webDriverPromise.Promise<boolean> {
var querySection = this.browserInstance.element(by.cssContainingText('label', 'Query'));
return querySection.isPresent();
}
示例9: hasMappingSection
hasMappingSection(): webDriverPromise.Promise<boolean> {
var mappingElement = this.browserInstance.element(by.cssContainingText('label', 'Mapping'));
return mappingElement.isPresent();
}
示例10: getRunCommandElement
private getRunCommandElement(): ElementFinder {
return this.browserInstance.element(by.css('.run-command'));
}