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.
Array<ReactElement>
: The retrieved ReactElements.
const one = <span />; const two = <span />; function Test() { return ( <div> {one} {two} </div> ); } const wrapper = shallow(<Test />); expect(wrapper.find('span').getElements()).to.deep.equal([one, two]);
© 2015 Airbnb, Inc.
Licensed under the MIT License.
https://airbnb.io/enzyme/docs/api/ShallowWrapper/getElements.html