From 0f3b60bb559cbdbb4f1a0f6ada23792bbe8f9a04 Mon Sep 17 00:00:00 2001 From: Pavel Jankoski Date: Thu, 4 Jul 2024 14:47:52 +0200 Subject: [PATCH] console: Fix e2e tests --- cypress/e2e/console/devices/onboarding/qr-scan.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/console/devices/onboarding/qr-scan.spec.js b/cypress/e2e/console/devices/onboarding/qr-scan.spec.js index 00b470eadc..9caf84f108 100644 --- a/cypress/e2e/console/devices/onboarding/qr-scan.spec.js +++ b/cypress/e2e/console/devices/onboarding/qr-scan.spec.js @@ -99,7 +99,7 @@ describe('Device onboarding with QR scan', () => { cy.findByLabelText('DevEUI').should('have.value', devEui).should('be.disabled') cy.findByRole('button', { name: 'Reset' }).should('be.disabled') cy.findByLabelText('AppKey').type(generateHexValue(32)) - cy.findByLabelText('End device ID').type(`eui-${device.devEui}`) + cy.findByLabelText('End device ID').should('have.value', `eui-${device.devEui}`) cy.findByRole('button', { name: 'Register end device' }).click()