---
title: 'Interaction tests'
---
As you build more complex UIs like pages, components become responsible for more than just rendering the UI. They fetch data and manage state. Interaction tests allow you to verify these functional aspects of UIs.
In a nutshell, you start by supplying the appropriate props for the initial state of a component. Then simulate user behavior such as clicks and form entries. Finally, check whether the UI and component state update correctly.
In Storybook, this familiar workflow happens in your browser. That makes it easier to debug failures because you're running tests in the same environment as you develop components: the browser.

## How does component testing in Storybook work?
You start by writing a [**story**](../writing-stories/introduction.md) to set up the component's initial state. Then simulate user behavior using the **play** function. Finally, use the **test-runner** to confirm that the component renders correctly and that your interaction tests with the **play** function pass. Additionally, you can automate test execution via the [command line](./test-runner.md#cli-options) or in your [CI environment](./test-runner.md#set-up-ci-to-run-tests).
- The [`play`](../writing-stories/play-function.md) function is a small snippet of code that runs after a story finishes rendering. You can use this to test user workflows.
- The test is written using Storybook-instrumented versions of [Jest](https://jestjs.io/) and [Testing Library](https://testing-library.com/).
- [`@storybook/addon-interactions`](https://storybook.js.org/addons/@storybook/addon-interactions/) visualizes the test in Storybook and provides a playback interface for convenient browser-based debugging.
- [`@storybook/test-runner`](https://github.com/storybookjs/test-runner) is a standalone utility—powered by [Jest](https://jestjs.io/) and [Playwright](https://playwright.dev/)—that executes all of your interactions tests and catches broken stories.
## Set up the interactions addon
To enable interaction testing with Storybook, you'll need to take additional steps to set it up properly. We recommend you go through the [test runner documentation](./test-runner.md) before proceeding with the rest of the required configuration.
Run the following command to install the interactions addon and related dependencies.
`userEvent.clear(await within(canvasElement).getByRole('myinput'));` |
| `click` | Clicks the element, calling a click() function
`userEvent.click(await within(canvasElement).getByText('mycheckbox'));` |
| `dblClick` | Clicks the element twice
`userEvent.dblClick(await within(canvasElement).getByText('mycheckbox'));` |
| `deselectOptions` | Removes the selection from a specific option of a select element
`userEvent.deselectOptions(await within(canvasElement).getByRole('listbox','1'));` |
| `hover` | Hovers an element
`userEvent.hover(await within(canvasElement).getByTestId('example-test'));` |
| `keyboard` | Simulates the keyboard events
`userEvent.keyboard(‘foo’);` |
| `selectOptions` | Selects the specified option, or options of a select element
`userEvent.selectOptions(await within(canvasElement).getByRole('listbox'),['1','2']);` |
| `type` | Writes text inside inputs, or textareas
`userEvent.type(await within(canvasElement).getByRole('my-input'),'Some text');` |
| `unhover` | Unhovers out of element
`userEvent.unhover(await within(canvasElement).getByLabelText(/Example/i));` |
### Group interactions with the `step` function
For complex flows, it can be worthwhile to group sets of related interactions together using the `step` function. This allows you to provide a custom label that describes a set of interactions: