本文整理汇总了TypeScript中protractor/built/element.ElementFinder类的典型用法代码示例。如果您正苦于以下问题:TypeScript ElementFinder类的具体用法?TypeScript ElementFinder怎么用?TypeScript ElementFinder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ElementFinder类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: shouldProjectBeLinked
projectsPage.findProject(constants.otherProjectName).then((projectRow: ElementFinder) => {
shouldProjectBeLinked(constants.otherProjectName, projectRow, false);
shouldProjectHaveButtons(projectRow, true);
// Now add the admin back to the project
projectRow.element(by.id('managerButton')).click();
});
示例2: return
activityPage.activitiesList.filter((item: ElementFinder) => {
// Look for activity items that do not contain our username
return (item.getText().then((text: string) => {
return text.indexOf(username) === -1;
}));
}).then((activityItems: ElementFinder[]) => {
示例3:
const shouldProjectHaveButtons = (projectRow: ElementFinder, bool: boolean) => {
const addAsManagerBtn = projectRow.element(by.id('managerButton'));
expect<any>(addAsManagerBtn.isDisplayed()).toBe(bool);
};
示例4: addMachines
async addMachines(machine) {
const keys = Object.keys(machine);
for( const key of keys) {
//await this[key].waitForElement(1000);
await this[key].sendKeys(machine[key]);
};
await this.buttonAddMachine.click();
}
示例5: removeMachine
async removeMachine() {
const addMachines = await this.valuesAddMachines.map(async (element) => {
return await element.getText()
});
await this.removeMachines.click();
//await this.valuesAddMachines.waitForElements(1000);
const newMachines = await this.valuesAddMachines.map(async (element) => {
return await element.getText()
});
let checkedLength = false;
if(addMachines.length > newMachines.length) {
checkedLength = true;
};
return checkedLength;
}
示例6: filterMark
async filterMark(textMachine) {
await this.inputSortMark.sendKeys(textMachine);
let EC = protractor.ExpectedConditions;
browser.wait(EC.elementToBeSelected($('.btn.btn-defult')), 5000);
const but = await this.buttonFilter.get(0);
await but.click();
browser.wait(EC.elementToBeSelected($('.active.brand')), 5000);
const addMachines = await this.valuesAddMachines.map(async (element) => {
return await element.getText()
});
let endFilter = false;
for(let i = 0; i < addMachines.length; i++) {
if(textMachine == addMachines[i]) {
endFilter = true;
return endFilter;
}
}
}
示例7: loginGo
async loginGo(user: user ) {
await this.username.sendKeys(user.username);
await this.password.sendKeys(user.password);
await $('.btn.btn-primary').click();
}