From 2c7f09282a06ff96a6adfbb837330ea69932c780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Tue, 14 May 2024 14:22:51 +0100 Subject: [PATCH] Update selector for Start server button to use button tag (#2464) --- tests/tests_e2e/cypress/integration/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_e2e/cypress/integration/main.js b/tests/tests_e2e/cypress/integration/main.js index 1184ba76d..e25d60fd8 100644 --- a/tests/tests_e2e/cypress/integration/main.js +++ b/tests/tests_e2e/cypress/integration/main.js @@ -52,8 +52,8 @@ describe('First Test', () => { cy.get('h1') .should('contain', 'Server Options'); - cy.get('input.btn.btn-jupyter') - .should('have.attr', 'value', 'Start').click(); + cy.get('button.btn.btn-jupyter') + .should('contain', 'Start').click(); // Minimal check that JupyterLab has opened cy.get('div#jp-MainLogo', { timeout: 60000 }).should('exist').wait(4000);