From c602ae9db7f012b9d9485cbcbabb44294de51c5d Mon Sep 17 00:00:00 2001 From: rebuilt Date: Wed, 19 Jul 2023 13:16:54 -0700 Subject: [PATCH] chore: limit search space for go button --- cypress/e2e/journey.cy.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/journey.cy.js b/cypress/e2e/journey.cy.js index 96e744ec..aa11c187 100644 --- a/cypress/e2e/journey.cy.js +++ b/cypress/e2e/journey.cy.js @@ -28,8 +28,9 @@ describe('navigates the site', () => { cy.get("#school-dropdown").children("option[selected='selected']").should('have.text', 'Abraham Lincoln Elementary School') cy.get("a[href='/districts/lowell/schools/abraham-lincoln-elementary-school/overview?year=2023-24']") - cy.contains('Go').click() - + cy.get('#schools').within(($schools) => { + cy.contains('Go').click() + }) cy.url().should('include', '/districts/lowell/schools/abraham-lincoln-elementary-school/overview?year=2023-24') })