From 82999d377dda05d15b48c958edf1d6b5cc8c3940 Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 11 Jul 2023 15:00:16 +0200 Subject: [PATCH] disable waiting for actionability at post creation image dropzone --- .../I_should_be_able_to_{string}_a_teaser_image.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/support/step_definitions/Post.Images/I_should_be_able_to_{string}_a_teaser_image.js b/cypress/support/step_definitions/Post.Images/I_should_be_able_to_{string}_a_teaser_image.js index 75d1e352d..478851f92 100644 --- a/cypress/support/step_definitions/Post.Images/I_should_be_able_to_{string}_a_teaser_image.js +++ b/cypress/support/step_definitions/Post.Images/I_should_be_able_to_{string}_a_teaser_image.js @@ -10,14 +10,14 @@ Then("I should be able to {string} a teaser image", condition => { .click() cy.get("#postdropzone").selectFile( { contents: `cypress/fixtures/${postTeaserImage}`, fileName: postTeaserImage, mimeType: "image/png" }, - { action: "drag-drop" } + { action: "drag-drop", force: true } ).wait(750); break; case "add": postTeaserImage = "onourjourney.png" cy.get("#postdropzone").selectFile( { contents: `cypress/fixtures/${postTeaserImage}`, fileName: postTeaserImage, mimeType: "image/png" }, - { action: "drag-drop" } + { action: "drag-drop", force: true } ).wait(750); break; case "remove":