> For the complete documentation index, see [llms.txt](https://jimmylv.gitbook.io/tdd-frontend/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jimmylv.gitbook.io/tdd-frontend/coding/00-project-fizzbuzz/09-appendix-testing-library-basic.md).

# 附录 2：Testing Library 组件测试基础

> The more your tests resemble the way your software is used, the more confidence they can give you.

![](/files/-M1ictY6GSmb3pLO5XTO)

```javascript
import { render } from '@testing-library/react'

test('should show h1 title', () => {
  // given
  const comp = render(<App />)

  // when
  const result = comp.getByTestId('title').textContent

  // then
  expect(result).toBe('练功房前端脚手架')
})
```

## Query 查找元素

```javascript
getByLabelText
getByPlaceholderText
getByText
getByDisplayValue

getByAltText
getByTitle
getByRole

getByTestId
```

## [Which query should I use?](https://testing-library.com/docs/guide-which-query)

| type           | *No Match* | *1 Match* | *1+ Match* | *Await?* |
| -------------- | ---------- | --------- | ---------- | -------- |
| ***getBy***    | *throw*    | *return*  | *throw*    | *No*     |
| ***findBy***   | *throw*    | *return*  | *throw*    | *Yes*    |
| ***queryBy***  | *null*     | *return*  | *throw*    | *No*     |
| **getAllBy**   | throw      | array     | array      | No       |
| **findAllBy**  | throw      | array     | array      | Yes      |
| **queryAllBy** | \[]        | array     | array      | No       |

## 测试组件的交互行为

```javascript
import { render } from '@testing-library/react'
import userEvent from '@testing-library/user-event'

test('should calculate result by input number', () => {
  const comp = render(<App />)

  userEvent.type(comp.getByTestId('input-number'), '15')

  expect(wrapper.getByTestId('number-result').textContent).toBe('FizzBuzz')
})
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://jimmylv.gitbook.io/tdd-frontend/coding/00-project-fizzbuzz/09-appendix-testing-library-basic.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
