diff --git a/cypress/e2e/playground-single-site.cy.js b/cypress/e2e/playground-single-site.cy.js index 28a60c8..0af51b7 100644 --- a/cypress/e2e/playground-single-site.cy.js +++ b/cypress/e2e/playground-single-site.cy.js @@ -20,8 +20,9 @@ describe('WordPress Playground Single Site Tests', () => { cy.get('body', { timeout: 15000 }).then(($body) => { // Verify the starter template plugin exists and is activated. if ($body.find('tr[data-slug="wp-plugin-starter-template-for-ai-coding"]').length) { - cy.get('tr[data-slug="wp-plugin-starter-template-for-ai-coding"]').should('exist'); - cy.get('tr[data-slug="wp-plugin-starter-template-for-ai-coding"] .deactivate a').should('exist'); + cy.get('tr[data-slug="wp-plugin-starter-template-for-ai-coding"]').within(() => { + cy.get('.deactivate a').should('exist'); + }); } else { cy.log('Starter template plugin not found by slug, skipping check'); }