d2-ui
Version:
46 lines (29 loc) • 940 B
Markdown
on a wrapper instance that is also the root instance.
1. `refName` (`String`): The ref attribute of the node
`ReactWrapper`: A wrapper of the node that matches the provided reference name.
```jsx
class Foo extends React.Component {
render() {
return (
<div>
<span ref="firstRef" amount={2}>First</span>
<span ref="secondRef" amount={4}>Second</span>
<span ref="thirdRef" amount={8}>Third</span>
</div>
);
}
}
```
```jsx
const wrapper = mount(<Foo />);
expect(wrapper.ref('secondRef').prop('amount')).to.equal(4);
expect(wrapper.ref('secondRef').text()).to.equal('Second');
```
- [`.find(selector) => ReactWrapper`](find.md)
- [`.findWhere(predicate) => ReactWrapper`](findWhere.md)
Returns a wrapper of the node that matches the provided reference name.
NOTE: can only be called