From 8405561e0ce87d7ea9db286c14980e2d6db945b0 Mon Sep 17 00:00:00 2001 From: tzhangchi Date: Wed, 21 Dec 2022 21:38:28 +0800 Subject: [PATCH] tests: add exception page test --- tests/exception-page.spec.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/exception-page.spec.ts diff --git a/tests/exception-page.spec.ts b/tests/exception-page.spec.ts new file mode 100644 index 0000000000..3512934e9c --- /dev/null +++ b/tests/exception-page.spec.ts @@ -0,0 +1,15 @@ +import { test, expect } from '@playwright/test'; +import { loadPage } from './libs/load-page'; + +loadPage(); + +// ps aux | grep 8080 +test.describe('exception page', () => { + test('bisit 404 page', async ({ page }) => { + await page.goto('http://localhost:8080/404'); + await page.waitForTimeout(300); + const notFoundTipDom = await page.getByText('404 - Page Not Found'); + + await expect(await notFoundTipDom.isVisible()).toBe(true); + }); +});