Back to Enzyme

`.getElements() => Array`

docs/api/ReactWrapper/getElements.md

2.9.1606 B
Original Source

.getElements() => Array<ReactElement>

Returns the wrapped ReactElements

If the current wrapper is wrapping the root component, returns the root component's latest render output wrapped in an array.

Returns

Array<ReactElement>: The retrieved ReactElements.

Examples

jsx
const one = <span />;
const two = <span />;

function Test() {
  return (
    <div>
      {one}
      {two}
    </div>
  );
}

const wrapper = mount(<Test />);
expect(wrapper.find('span').getElements()).to.deep.equal([one, two]);

Related Methods