mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
13 lines
447 B
Plaintext
13 lines
447 B
Plaintext
```js
|
|
// tests/login-form/login.spec.js
|
|
|
|
const { test, expect } = require('@playwright/test');
|
|
|
|
test('Login Form inputs', async ({ page }) => {
|
|
await page.goto('http://localhost:6006/iframe.html?id=components-login-form--example');
|
|
const email = await page.inputValue('#email');
|
|
const password = await page.inputValue('#password');
|
|
await expect(email).toBe('email@provider.com');
|
|
await expect(password).toBe('a-random-password');
|
|
});
|
|
``` |