test: increase delay after focus

Cypress can't automatically wait for correct time here, it ends up
focusing at wrong field.
This commit is contained in:
Ankush Menat 2024-01-10 18:59:42 +05:30
parent 81d6bea82c
commit 79b0ec76ae

View file

@ -7,7 +7,7 @@ const jump_to_field = (field_label) => {
.type("{enter}")
.wait(200)
.type("{enter}")
.wait(500);
.wait(1000);
};
const type_value = (value) => {