本文整理汇总了TypeScript中protractor.ProtractorBrowser类的典型用法代码示例。如果您正苦于以下问题:TypeScript ProtractorBrowser类的具体用法?TypeScript ProtractorBrowser怎么用?TypeScript ProtractorBrowser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ProtractorBrowser类的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: getSerializedContent
private getSerializedContent(): webDriverPromise.Promise<string> {
return this.browserInstance.executeScript(function () {
var sectionCss: string = arguments[0];
var getAceEditor = (sectionCss: string): AceAjax.Editor => {
var aceEditorElement: any = document.querySelector(sectionCss);
var aceEditor: AceAjax.Editor = aceEditorElement.env.editor;
return aceEditor;
};
var aceEditor = getAceEditor(sectionCss);
return aceEditor.getValue();
}, this.cssSelector);
}
示例5: setSerializedContent
private setSerializedContent(serializedJson: string): webDriverPromise.Promise<void> {
return this.browserInstance.executeScript(function setAceEditorContentContent() {
var sectionCss: string = arguments[0];
var serializedContent: string = arguments[1];
var getAceEditor = (sectionCss: string): AceAjax.Editor => {
var aceEditorElement: any = document.querySelector(sectionCss);
var aceEditor: AceAjax.Editor = aceEditorElement.env.editor;
return aceEditor;
};
var aceEditor = getAceEditor(sectionCss);
aceEditor.setValue(serializedContent);
aceEditor.clearSelection();
}, this.cssSelector, serializedJson);
}
示例6: getCurrentUrl
getCurrentUrl(): webDriverPromise.Promise<string> {
return this.browserInstance.getCurrentUrl();
}
示例7: getRunCommandElement
private getRunCommandElement(): ElementFinder {
return this.browserInstance.element(by.css('.run-command'));
}
示例8: getSaveCommandElement
private getSaveCommandElement(): ElementFinder {
return this.browserInstance.element(by.css('.save-command'));
}
示例9: hasDocumentsSection
hasDocumentsSection(): webDriverPromise.Promise<boolean> {
var documentsSection = this.browserInstance.element(by.cssContainingText('label', 'Documents'));
return documentsSection.isPresent();
}
示例10: hasResultSection
hasResultSection(): webDriverPromise.Promise<boolean> {
var resultSection = this.browserInstance.element(by.cssContainingText('label', 'Result'));
return resultSection.isPresent();
}