mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-31 15:37:26 -08:00
ci: When saving credentials in e2e tests, wait for the save operation to finish (no-changelog) (#11850)
Co-authored-by: Csaba Tuncsik <csaba.tuncsik@gmail.com>
This commit is contained in:
parent
fbaa17951f
commit
96b95ef5e5
|
@ -35,7 +35,11 @@ export function setCredentialConnectionParameterInputByName(name: string, value:
|
||||||
}
|
}
|
||||||
|
|
||||||
export function saveCredential() {
|
export function saveCredential() {
|
||||||
getCredentialSaveButton().click({ force: true });
|
getCredentialSaveButton()
|
||||||
|
.click({ force: true })
|
||||||
|
.within(() => {
|
||||||
|
cy.get('button').should('not.exist');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function closeCredentialModal() {
|
export function closeCredentialModal() {
|
||||||
|
|
Loading…
Reference in a new issue