```md import { Meta, Story } from '@storybook/addon-docs'; import { screen } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { MyComponent } from './MyComponent.js'; { const exampleElement= screen.getByLabelText('example-element'); await userEvent.type(exampleElement, 'random string', { delay: 100, }); const AnotherExampleElement= screen.getByLabelText('another-example-element'); await userEvent.type(AnotherExampleElement, 'another random string', { delay: 100, }); }} /> ```