1. 24
    Simulate Clicks in a Test with the User Event Library
    2m 59s

Simulate Clicks in a Test with the User Event Library

Jamund Ferguson
InstructorJamund Ferguson
Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 2 years ago

The user event library provides a series of tools for programmatically interacting with a webpage during a test. Some of the supported events include click, dblClick, type, upload, clear, tab and hover. The interface is fairly straight forward in most cases you simply say userEvent["eventName"] and then pass in an element returned from a findBy or getBy query.

Here we use userEvent.click to click the "add to cart" button for our bananas product. In this case our button had no specific queryable property (they all said "add to cart" and lacked anything unique), so we have to find a sibling element, the heading, using screen.findByRole("heading", { name: /bananas/i }). Once we have a pointer then we traverse to the parent DOM node using the .parentNode property. Then we search its children for a button using the standalone getByRole() function, which takes for its first argument a container to narrow our search.


Notes

The name property used to filter our findByRole results above refers to the accessible name determined by the browser and could reference button text, heading text or a label associated with a form element.

When you're searching with screen.getByRole the container is assumed to be screen.

There is also a fireEvent method that can be imported from "@testing-library/react", which provides a simpler interface with less options. It's generally preferred to use the user event library instead.

The parentNode property is standard on DOM elements and is provided here courtesy of JSDom which Jest is using as the host environment for our tests.

Jamund Ferguson: Open up Jest in watch mode, with a filter for Products.Test. Then, in the products.test.tsx file, add a new test called "Should be able to add a banana to your cart." This will be an async function.

The first thing we want to do here is renderWithContext Products. Before we get too far along, let's take a look at our page to see how we're going to be able to get to the button. We can see the block here, featuring bananas. If we inspect the source of that block, we can see that there's nothing really unique. There's not a class or anything on this button.

We can see that the heading for bananas and the button are siblings, and that they both share the same parent. We're going to use that to programatically access the button for our test.

Back in our source code, let's type const heading = await screen.findByRole. We're going to look for headings with a name. In this case, we're going to use a regular expression that matches on Bananas. We'll pass in /i so that it's case insensitive.

We're going to find the banana headings. Then, we know we need to get to the parent of that. That'll be a div. We'll say const div = heading.parentNode.

Now, we want to search for a button within the parentNode. For that, we need to get a special version of the getByRole() method from testing-library/react. Type const button = getByRole. We can pass in that div as the container. Then, we'll say it's looking for a button.

There's only one button within the parent of our heading. That's the one that we want. You'll notice that TypeScript's unhappy with this. If you need, you can cast this as an HTML element. We know that it will be. If it fails, our test will catch that.

To actually click the button, at the top of the file, go ahead and import userEvent from "@testing-library/user-event". With userEvent, we can say userEvent.click(button).

Now that we've added an item to the cart, in order to see that, we need to inspect our Redux store. We can grab the Redux store here from renderWithContext.

Let's log what we have in our store. Type console.log(store).getState().cart.items). You can see that the ID for bananas is 207. We can type expect(store).getState().cart.items ["207"] ).toEqual(1). That passed as expected. If we add it two more times, we can also say the same thing, it should equal 3.

In this lesson, we used screen.findByRole to await for the bananas heading to appear. We then pass the parent node into our top-level getByRole function, which allowed us to search it for the button. We then use the userEvent() library to click the button, and asserted that our Redux state was updated appropriately.

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 9 months ago

Around 2:35 in the video, you need something like the following in order to get expectations to pass:

act(() => { userEvent.click(button); }); await waitFor(() => { const items = store.getState().cart.items; expect(items).toEqual({ '207': 1 }); });

Markdown supported.
Become a member to join the discussionEnroll Today