fix(editor): Add debounce to text parameter input (#19339)

This commit is contained in:
yehorkardash
2025-09-11 08:56:18 +00:00
committed by GitHub
parent fea0a62f8e
commit 18cccb29ea
8 changed files with 99 additions and 39 deletions

View File

@@ -74,7 +74,9 @@ export class CredentialsModal extends BasePage {
.filter(':not([readonly])')
.each(($el) => {
cy.wrap($el).type('test');
});
})
// wait for text input debounce
.wait(300);
saveCredential();
if (closeModal) {
this.getters.closeButton().click();