跳到主要内容

备忘单

关于 Vue Testing Library 中所有导出的函数的简短指南。

查询

与 DOM Testing Librar 的区别

Vue Testing Library 中从 render 返回的查询与 DOM Testing Library 相同。 然而,它们的第一个参数是与文档绑定的,所以你写的是 getByText(node, 'text') 而不是 getByText('text')

搜索变体

Return if no matchReturn if 1 matchReturn if 1+ matchAwait?
getBy...throwreturnthrowNo
findBy...throwreturnthrowYes
queryBy...nullreturnthrowNo
getAllBy...throwarrayarrayNo
findAllBy...throwarrayarrayYes
queryAllBy...[]arrayarrayNo

搜索类型

finds by...DOM example
...ByLabelTextlabel or aria-label content<label for="element" />
...ByPlaceholderTextinput placeholder value<input placeholder="name" />
...ByTextelement text content<p>Lorem ipsum</p>
...ByDisplayValueform element current valueCurrent value of input element
...ByAltTextimg alt attribute<img alt="movie poster" />
...ByTitletitle attribute or svg title tag<span title="Add" /> or <title />
...ByRoleARIA role<div role="dialog" />
...ByTestIddata-testid attribute<div data-testid="some-message" />

你可以编写任何搜索变体和搜索类型的组合。

一个示例

getByLabelText('Username') 将搜索一个包含字符串 "Username"的 <label>元素,并 返回相关的 input。如果没有找到,或找到一个以上的,它将抛出一个错误。

queryAllByRole('nav') 将同步寻找所有带有 role="nav" 属性的元素,并返回一个包 含结果的数组(如果没有找到结果,则返回一个空数组)。

更多信息,请看我应该使用哪个查询?

异步工具

  • waitFor (Promise) 重试回调函数,直到它停止抛出或超时。
  • waitForElement (Promise) 重试回调函数或函数数组并返回结果。
  • findByfindAllBy 查询是异步的,重试直到超时或查询成功返回;它们包裹着 waitForElement

更多信息,请参 阅DOM Testing Library 异步 API

记住在你的测试中 await.then() 异步函数的结果!

触发事件

  • fireEvent() 触发 DOM 事件: fireEvent(node, event)
  • fireEvent.* 默认事件类型的辅助函数

欲了解更多信息,请参见 事件 API

与 DOM Testing Library 的区别

Vue Testing Library 返回的事件都是异步的,所以你应该awaitthen()结 果。

VTL 也暴露了 fireEvent.update(node, value) 事件来处理 v-model。更多细节见 APIthe API

其它

  • within(node) 接收一个节点并返回一个对象,其中包含所有与之绑定的查询: within(getByTestId("global-header")).getByText("hello")
  • configure(config) 改变全局选项 :configure({testIdAttribute: 'my-test-id'})

欲了解更多信息,请参 见查询元素内配置 API

Text Match 选项

给定以下 HTML:

<div>Hello World</div>

所有这些匹配器都会找到该元素:

// Matching a string:
getByText('Hello World') // full string match
getByText('llo Worl', {exact: false}) // substring match
getByText('hello world', {exact: false}) // ignore case

// Matching a regex:
getByText(/World/) // substring match
getByText(/world/i) // substring match, ignore case
getByText(/^hello world$/i) // full string match, ignore case
getByText(/Hello W?oRlD/i) // advanced regex

// Matching with a custom function:
getByText((content, element) => content.startsWith('Hello'))