File size: 439 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { screen, within } from "@testing-library/react";
import { UserEvent } from "@testing-library/user-event";

export const clickOnEditButton = async (user: UserEvent) => {
  const ellipsisButton = screen.getByTestId("ellipsis-button");
  await user.click(ellipsisButton);

  const menu = screen.getByTestId("context-menu");
  const editButton = within(menu).getByTestId("edit-button");

  await user.click(editButton);
};