元素内查询
within
(getQueriesForElement
函数的别名) 接受一个 DOM 元素并将其绑定到原始的
查询函数,这样你可以在不指定容器的情况下使用查询函数。React Testing Library 和
Vue Testing Library 在底层都在使用它.
示例: 想要在名为 'messages' 的区域获取到文本 'hello',你可以执行以下操作:
- Native
- React
- Cypress
import {within} from '@testing-library/dom'
const messages = document.getElementById('messages')
const helloMessage = within(messages).getByText('hello')
import {render, within} from '@testing-library/react'
const {getByText} = render(<MyComponent />)
const messages = getByText('messages')
const helloMessage = within(messages).getByText('hello')
cy.findByText('messages').within(() => {
cy.findByText('hello')
})