Wait 4 seconds after filter submission #run_acceptance_tests

This commit is contained in:
M. Mert Yildiran 2022-05-09 22:18:38 +03:00
parent 0b6d805ce1
commit 3c20ccfcec
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

@ -218,6 +218,7 @@ function checkFilter(filterDetails) {
checkRightSideResponseBody();
});
setTimeout(function () {
resizeToHugeMizu();
// checking only 'leftTextCheck' on all entries because the rest of the checks require more time
@ -234,6 +235,7 @@ function checkFilter(filterDetails) {
resizeToNormalMizu();
cy.reload();
cy.get('#total-entries', {timeout: refreshWaitTimeout}).should('have.text', totalEntries);
}, 4000);
})
});
}