ByText
getByText, queryByText, getAllByText, queryAllByText, findByText, findAllByText
API
getByText(
// If you're using `screen`, then skip the container argument:
container: HTMLElement,
text: TextMatch,
options?: {
selector?: string = '*',
exact?: boolean = true,
ignore?: string|boolean = 'script, style',
normalizer?: NormalizerFn,
}): HTMLElement
搜索所有具有文本节点的元素,textContent
匹配指定
TextMatch
.
<a href="/about">About ℹ️</a>
- Native
- React
- Cypress
import {screen} from '@testing-library/dom'
const aboutAnchorNode = screen.getByText(/about/i)
import {render, screen} from '@testing-library/react'
render(<MyComponent />)
const aboutAnchorNode = screen.getByText(/about/i)
cy.findByText(/about/i).should('exist')
它也适用于 input
的 type
属性为 submit
或 button
:
<input type="submit" value="Send data" />
选项
TextMatch 选项, 和以下:
selector
注意
怎么和何时使用
selector
选项,详情请参考getByLabelText
ignore
ignore
选项接受一个查询选择器。如果
node.matches
处理选择器返回 true 时,则节点会被忽略掉。 'script, style'
默认会被忽略,因为
通常你不想选择这些标签,但是如果你的内容位于内联的 script 文件中,则 script 标签
需要被返回。
如果你想要禁用此行为,直接设置 ignore
为 false
。