extension refactor
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2020-11-23 18:35:57 +01:00
parent e7c5f4d4b5
commit 551af77fc3
1 changed files with 1 additions and 0 deletions

View File

@ -267,6 +267,7 @@ let actions = {
writeOnEditableTD: async function(selector, text) { writeOnEditableTD: async function(selector, text) {
let builtSelector = await this.selectorFormater(selector); let builtSelector = await this.selectorFormater(selector);
await this.waitToClick(selector); await this.waitToClick(selector);
await this.waitForSelector(builtSelector, {visible: true});
await this.type(builtSelector, text); await this.type(builtSelector, text);
await this.keyboard.press('Enter'); await this.keyboard.press('Enter');
}, },