备忘单
关于 Vue Testing Library
中所有导出的函数的简短指南。
查询
与 DOM Testing Librar 的区别
Vue Testing Library
中从render
返回的查询与DOM Testing Library
相同。 然而,它们的第一个参数是与文档绑定的,所以你写的是getByText(node, 'text')
而不是getByText('text')
。
搜索变体
Return if no match | Return if 1 match | Return if 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 |
搜索类型
finds by... | DOM example | |
---|---|---|
...ByLabelText | label or aria-label content | <label for="element" /> |
...ByPlaceholderText | input placeholder value | <input placeholder="name" /> |
...ByText | element text content | <p>Lorem ipsum</p> |
...ByDisplayValue | form element current value | Current value of input element |
...ByAltText | img alt attribute | <img alt="movie poster" /> |
...ByTitle | title attribute or svg title tag | <span title="Add" /> or <title /> |
...ByRole | ARIA role | <div role="dialog" /> |
...ByTestId | data-testid attribute | <div data-testid="some-message" /> |
你可以编写任何搜索变体和搜索类型的组合。
一个示例
getByLabelText('Username')
将搜索一个包含字符串 "Username"的 <label>
元素,并
返回相关的 input
。如果没有找到,或找到一个以上的,它将抛出一个错误。
queryAllByRole('nav')
将同步寻找所有带有 role="nav"
属性的元素,并返回一个包
含结果的数组(如果没有找到结果,则返回一个空数组)。
更多信息,请看我应该使用哪个查询?
异步工具
- waitFor (Promise) 重试回调函数,直到它停止抛出或超时。
- waitForElement (Promise) 重试回调函数或函数数组并返回结果。
findBy
和findAllBy
查询是异步的,重试直到超时或查询成功返回;它们包裹着waitForElement
。
更多信息,请参 阅DOM Testing Library 异步 API。
记住在你的测试中
await
或.then()
异步函数的结果!
触发事件
- fireEvent() 触发 DOM 事件:
fireEvent(node, event)
- fireEvent.* 默认事件类型的辅助函数
- click
fireEvent.click(node)
- input
fireEvent.input(node, event)
- 查看所有支持的事件
- click
欲了解更多信息,请参见 事件 API
与 DOM Testing Library 的区别
从
Vue Testing Library
返回的事件都是异步的,所以你应该await
或then()
结 果。VTL 也暴露了
fireEvent.update(node, value)
事件来处理v-model
。更多细节见 APIthe API。
其它
- within(node) 接收一个节点并返回一个对象,其中包含所有与之绑定的查询:
within(getByTestId("global-header")).getByText("hello")
。 - configure(config) 改变全局选项
:
configure({testIdAttribute: 'my-test-id'})
。
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'))