3
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?

テスト実行時にThe given element does not have a value setterというエラーが表示される

Posted at

The given element does not have a value setterの対処法

問題のファイルでエラーが発生する原因になっている箇所

describe("フォームに入力ができること", () =>{
    test("学習内容が入力できる",
      async () => {
            const learnRecordForm = screen.findByLabelText("学習内容");
            fireEvent.change(learnRecordForm, {target: { value: "test" }});
      }
    )
  }

修正した箇所

describe("フォームに入力ができること", () =>{
    test("学習内容が入力できる",
      async () => {
            const learnRecordForm = await screen.findByLabelText("学習内容");
            fireEvent.change(learnRecordForm, {target: { value: "test" }});
      }
    )
  }

問題の原因

要素が見つかる前にfireEventで入力しようとしていたため

エラー解決策

要素が見つかるまで待機してからfireEventを実行する。

react-testing-libraryについて勉強しているところの為
間違っているところがありましたらご指摘・コメントをいただけると幸いです。

3
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
3
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?