From 42662cf7b1173286fb19c09d99d450737e1c52c7 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 3 Dec 2025 20:37:57 +0000 Subject: [PATCH] Bug 41368: Fix View batch click To test: 1. APPLY PATCH 2. yarn build 3. cypress run --spec t/cypress/integration/Tools/ManageMarcImport_spec.ts 4. It should now pass --- t/cypress/integration/Tools/ManageMarcImport_spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/cypress/integration/Tools/ManageMarcImport_spec.ts b/t/cypress/integration/Tools/ManageMarcImport_spec.ts index 13f27698fdd..dd1b76bbbef 100644 --- a/t/cypress/integration/Tools/ManageMarcImport_spec.ts +++ b/t/cypress/integration/Tools/ManageMarcImport_spec.ts @@ -54,10 +54,10 @@ describe("loads the manage MARC import page", () => { cy.get('select[name="format"]').should("have.value", "MARCXML"); //select some new options - cy.get("#matcher").select("3", { force: true }); cy.get("#matcher") .select("3", { force: true }) .should("have.value", "3"); + cy.get("#overlay_action") .select("create_new", { force: true }) .should("have.value", "create_new"); @@ -72,7 +72,7 @@ describe("loads the manage MARC import page", () => { cy.get("#job_callback").should("exist"); - cy.contains("View batch").click(); + cy.get("#job_callback").contains("View batch").click(); // Now verify all values are retained cy.get("#new_matcher_id").should("have.value", "3"); -- 2.39.5