chore: lint

This commit is contained in:
karishmas6
2024-06-08 00:46:59 +05:30
parent 920ebe8bce
commit 7e1e8f2920

View File

@@ -297,7 +297,8 @@ export class WorkflowGenerator {
lastData: { lastData: {
selector: this.generatedData.lastUsedSelector, selector: this.generatedData.lastUsedSelector,
action: this.generatedData.lastAction, action: this.generatedData.lastAction,
} }); }
});
} else { } else {
await this.addPairToWorkflowAndNotifyClient(pair, page); await this.addPairToWorkflowAndNotifyClient(pair, page);
} }
@@ -715,9 +716,11 @@ export class WorkflowGenerator {
// when more than one press action is present, add a type action // when more than one press action is present, add a type action
pair.what.splice(index - input.actionCounter, input.actionCounter, { pair.what.splice(index - input.actionCounter, input.actionCounter, {
action: 'type', action: 'type',
args: [input.selector, input.value], }, { args: [input.selector, input.value],
}, {
action: 'waitForLoadState', action: 'waitForLoadState',
args: ['networkidle'], }); args: ['networkidle'],
});
} }
} }