getByrole을 통해 얻은 htmlElement 객체에 prefix에 aria
import { render, screen } from "@testing-library/react"; import OrderPage from "../OrderPage"; test("주문 확인을 위한 체크박스가 있고 타이틀은 '주문하려는 것을 확인하셨나요?' 입니다. ", () => { render(); const checkbox = screen.getByRole("checkbox", { name: "주문하려는 것을 확인하셨나요?", }) as HTMLInputElement; expect(checkbox.checked).toEqual(false); const confirmButton = screen.getByRole("button", { name: "주문 확인", }) as HTMLButtonElement; expect(confirmButton.disabled).toBeTruthy(); }); 저는 이런식으로 작성했습니다!