mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:21:57 +08:00
20 lines
597 B
Plaintext
20 lines
597 B
Plaintext
```md
|
|
import { Meta, Story} from '@storybook/addon-docs'
|
|
|
|
import { getByRole, userEvent, within } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.js';
|
|
|
|
<Meta title="WithCanvasElement" component={MyComponent}/>
|
|
|
|
<!--Assigns canvas to the component root element and queries the element based on it-->
|
|
|
|
<Story
|
|
name="ExampleStory"
|
|
play={async ({canvasElement}) => {
|
|
const canvas = within(canvasElement);
|
|
|
|
await userEvent.type(canvas.getByTestId('example-element'), 'something');
|
|
await userEvent.click(canvas.getByRole('another-element'));
|
|
}} />
|
|
``` |