We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
find
findAll
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
find(Component)
The text was updated successfully, but these errors were encountered:
For alpha 0 we will support the querySelector syntax only (cannot find a component/ref/name). find/findAll will return a DOMWrapper(s).
querySelector
DOMWrapper
It should be able to find the ROOT node(s). eg:
<template> <div class="foo" /> <div class="foo" /> <div id="bar" /> </template>
wrapper.find('.foo')
wrapper.findAll('foo')
wrapper.find('#bar')
Sorry, something went wrong.
For this to work as we intend, I would need #25 to be merged.
Merge pull request #36 from vuejs/fix/allow-find-on-root
dd4a348
Refactor find to return the root in single root element components, fix #7
dobromir-hristov
Successfully merging a pull request may close this issue.
find(Component)
find
wrapper method vue-test-utils#1272 )The text was updated successfully, but these errors were encountered: