diff --git a/.env.development b/.env.development index b44a010..05f46f6 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_USE_CGI=false # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.722 +NEXT_PUBLIC_APP_VERSION=1.6.723 NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) diff --git a/.env.production b/.env.production index 09f7d91..2263531 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_USE_CGI=true # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.722 +NEXT_PUBLIC_APP_VERSION=1.6.723 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f0466a..f023c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.6.723] – 2025-08-14 + +- playwright: analge Eingänge mit highlight color test erfoögreich + +--- ## [1.6.722] – 2025-08-14 - playwright: analoge Eingänge Test erfolgreich diff --git a/package-lock.json b/package-lock.json index 38f1135..ec24757 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cpl-v4", - "version": "1.6.722", + "version": "1.6.723", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cpl-v4", - "version": "1.6.722", + "version": "1.6.723", "dependencies": { "@fontsource/roboto": "^5.1.0", "@headlessui/react": "^2.2.4", diff --git a/package.json b/package.json index b47b93e..d3ab11b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cpl-v4", - "version": "1.6.722", + "version": "1.6.723", "private": true, "scripts": { "dev": "next dev", diff --git a/playwright.config.ts b/playwright.config.ts index f9452f2..3de24fd 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -28,7 +28,7 @@ export default defineConfig({ /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: "http://localhost:3000", headless: false, - launchOptions: { slowMo: 300 }, + launchOptions: { slowMo: 100 }, video: "retain-on-failure", screenshot: "only-on-failure", diff --git a/playwright/tests/analogInputs.spec.ts b/playwright/tests/analogInputs.spec.ts index b9832ce..1215738 100644 --- a/playwright/tests/analogInputs.spec.ts +++ b/playwright/tests/analogInputs.spec.ts @@ -252,13 +252,17 @@ test("test", async ({ page }) => { await highlightAndExpectVisible(page, page.getByRole("img")); await page.waitForTimeout(3000); + await highlightAndExpectVisible( + page, + page.getByRole("button", { name: "Alle Messwerte " }) + ); await page.getByRole("button", { name: "Alle Messwerte " }).click(); await page.waitForTimeout(3000); await page.getByRole("option", { name: "Stündlich" }).click(); await page.waitForTimeout(3000); - await page.getByRole("button", { name: "Stündlich " }).click(); + await page.getByRole("button", { name: "Stündlich" }).click(); await page.waitForTimeout(3000); await page.getByRole("option", { name: "Täglich" }).click();