mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test.use({
|
|
storageState: './storageState.json'
|
|
});
|
|
|
|
test('test', async ({ page }) => {
|
|
await page.goto('http://127.0.0.1:3000/');
|
|
await page.getByRole('button', { name: 'Start Investing' }).click();
|
|
await page.getByRole('heading', { name: 'Investment Opportunities' }).click();
|
|
}); |