mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-24 11:33:08 +00:00
33 lines
1 KiB
JavaScript
33 lines
1 KiB
JavaScript
|
// @ts-check
|
||
|
const { test, expect } = require('@playwright/test');
|
||
|
|
||
|
test('button click', async ({ page }) => {
|
||
|
await page.goto('http://localhost:3333');
|
||
|
|
||
|
// Expect the page to contain the counter text.
|
||
|
const main = page.locator('#main');
|
||
|
await expect(main).toContainText('hello axum! 12345');
|
||
|
|
||
|
// Click the increment button.
|
||
|
let button = await page.locator('button.increment-button');
|
||
|
await button.click();
|
||
|
|
||
|
// Expect the page to contain the updated counter text.
|
||
|
await expect(main).toContainText('hello axum! 12346');
|
||
|
});
|
||
|
|
||
|
test('fullstack communication', async ({ page }) => {
|
||
|
await page.goto('http://localhost:3333');
|
||
|
|
||
|
// Expect the page to contain the counter text.
|
||
|
const main = page.locator('#main');
|
||
|
await expect(main).toContainText('Server said: ...');
|
||
|
|
||
|
// Click the increment button.
|
||
|
let button = await page.locator('button.server-button');
|
||
|
await button.click();
|
||
|
|
||
|
// Expect the page to contain the updated counter text.
|
||
|
await expect(main).toContainText('Server said: Hello from the server!');
|
||
|
});
|