wait 500ms when logging in to increase stability

This commit is contained in:
Ulf Gebhardt 2021-04-10 12:36:53 +02:00
parent ebee6e0c2e
commit 57d9cb81f7
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -2,5 +2,6 @@ import { When } from "cypress-cucumber-preprocessor/steps";
When("I click submit", () => {
cy.get("button[name=submit]")
.click();
.click()
.wait(500); // This is to ensure we reach the feed
});