本文整理匯總了TypeScript中protractor.ProtractorExpectedConditions.presenceOf方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ProtractorExpectedConditions.presenceOf方法的具體用法?TypeScript ProtractorExpectedConditions.presenceOf怎麽用?TypeScript ProtractorExpectedConditions.presenceOf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類protractor.ProtractorExpectedConditions
的用法示例。
在下文中一共展示了ProtractorExpectedConditions.presenceOf方法的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)
}
示例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:
By.partialButtonText('searchText');
By.repeater('repeatDescriptor');
By.exactRepeater('repeatDescriptor');
By.cssContainingText('cssSelector', 'searchText');
By.options('optionsDescriptor');
By.deepCss('selector');
By.className('className');
By.css('css');
By.id('id');
By.linkText('linkText');
By.js('js');
By.name('name');
By.partialLinkText('partialText');
By.tagName('tagName');
By.xpath('xpath');
ExpectedConditions.not(() => {});
ExpectedConditions.and(() => {});
ExpectedConditions.and(() => {},() => {});
ExpectedConditions.or(() => {});
ExpectedConditions.or(() => {},() => {});
ExpectedConditions.alertIsPresent();
ExpectedConditions.elementToBeClickable(element(by.css('')));
ExpectedConditions.textToBePresentInElement(element(by.css('')), 'text');
ExpectedConditions.textToBePresentInElementValue(element(by.css('')), 'text');
ExpectedConditions.titleContains('title');
ExpectedConditions.presenceOf(element(by.css('')));
ExpectedConditions.stalenessOf(element(by.css('')));
ExpectedConditions.visibilityOf(element(by.css('')));
ExpectedConditions.invisibilityOf(element(by.css('')));
ExpectedConditions.elementToBeSelected(element(by.css('')));