跳到主要内容

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>
import {screen} from '@testing-library/dom'

const aboutAnchorNode = screen.getByText(/about/i)

它也适用于 inputtype 属性为 submitbutton:

<input type="submit" value="Send data" />

选项

TextMatch 选项, 和以下:

selector

注意

怎么和何时使用 selector 选项,详情请参考 getByLabelText

ignore

ignore 选项接受一个查询选择器。如果 node.matches 处理选择器返回 true 时,则节点会被忽略掉。 'script, style' 默认会被忽略,因为 通常你不想选择这些标签,但是如果你的内容位于内联的 script 文件中,则 script 标签 需要被返回。

如果你想要禁用此行为,直接设置 ignorefalse