You’re browsing the documentation for Vue Test Utils for Vue v2.x and earlier.

To read docs for Vue Test Utils for Vue 3, click here.

O método findAll

Aviso de Depreciação

O uso de findAll para pesquisar por componentes está depreciado e será removido. Ao invés disso use findAllComponents. O método findAll continuará a funcionar para achar elementos usando qualquer seletor válido.

Retorna um WrapperArray.

Usa qualquer seletor válido.

  • Argumentos:

    • {string|Component} selector
  • Retorna: {WrapperArray}

  • Exemplo:

import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'
import Bar from './Bar.vue'

const wrapper = mount(Foo)

const div = wrapper.findAll('div').at(0)
expect(div.is('div')).toBe(true)

const bar = wrapper.findAll(Bar).at(0) // Uso depreciado
expect(bar.is(Bar)).toBe(true)