本文整理汇总了TypeScript中protractor/built/element.ElementFinder.click方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ElementFinder.click方法的具体用法?TypeScript ElementFinder.click怎么用?TypeScript ElementFinder.click使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类protractor/built/element.ElementFinder
的用法示例。
在下文中一共展示了ElementFinder.click方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: 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();
}
示例2: 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;
}