```md
import { Meta, Story } from '@storybook/addon-docs';
import { fireEvent, getByRole, userEvent, within } from '@storybook/testing-library'
import { MyComponent } from './MyComponent.component';
{
const canvas = within(canvasElement);
await userEvent.type(canvas.getByTestId('example-element'), 'something');
await fireEvent.click(canvas.getByRole('another-element'));
}} />
```