findAll
返回一个 WrapperArray
。
可以使用任何有效的选择器。
参数:
{string|Component} selector
返回值:
{WrapperArray}
示例:
import {attach} from 'san-test-utils';
import foo from './foo';
import bar from './bar';
const wrapper = attach(foo);
const div = wrapper.findAll('div').at(0);
expect(div.is('div')).toBe(true);
const bar = wrapper.findAll(bar).at(0);
expect(bar.is(bar)).toBe(true);