0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

React Testing Library 基本コマンド集

Last updated at Posted at 2024-07-16

React Testing Libraryを使用する際の基本的な操作について、具体的な例と共にまとめていきます。

getByText

指定されたテキストコンテンツを持つ要素を取得します。任意の要素をテキストコンテンツによって見つけるために使用されます。

render(<button>Submit</button>);

const button = screen.getByText("Submit");
expect(button).toBeInTheDocument();

getByLabelText

指定されたラベルテキストに対応する要素(通常はフォーム要素)を取得します。

render(
  <div>
    <label htmlFor="username">Username</label>
    <input id="username" />
  </div>
);

const input = screen.getByLabelText("Username");
expect(input).toBeInTheDocument();

getByRole

指定されたロール(役割)を持つ要素を取得します。アクセシビリティ属性に基づいて要素を検索するために使用されます。

render(<button>Submit</button>);

const button = screen.getByRole("button", { name: "Submit" });
expect(button).toBeInTheDocument();

getByTestId

指定された data-testid 属性を持つ要素を取得します。特定のテスト対象要素を簡単に見つけるために使用されます。

render(<button data-testid="submit-button">Submit</button>);

const button = screen.getByTestId("submit-button");
expect(button).toBeInTheDocument();
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?