reactjs – React Test Renderer模拟元素上的点击

前端之家收集整理的这篇文章主要介绍了reactjs – React Test Renderer模拟元素上的点击前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Jest v16.0.1,react-test-renderer v15.4.0和react-addons-test-utils v15.4.0测试React组件.

该组件已呈现一个按钮:

  1. <button
  2. type="button"
  3. className="btn btn-lg btn-primary btn-danger"
  4. disabled={this.state.cancelButtonDisabled}
  5. onClick={() => this.handleCancel()}
  6. ref="cancelButton"
  7. >Cancel</button>);

在我的测试中,我正在渲染组件:

  1. const component = renderer.create(
  2. <MyComponent />
  3. );
  4.  
  5. const instance = component.getInstance();
  6. // This works but is ugly
  7. component.toJSON().children[1].children[0].props.onClick();
  8. // This doesn't work
  9. ReactTestUtils.Simulate.click(instance.refs.cancelButton);
  10.  
  11. let tree = component.toJSON();
  12. expect(tree).toMatchSnapshot();

模拟点击此按钮的推荐方法是什么?您可以遍历组件的JSON表示,但看起来它们应该是更好的方法.

在我使用ReactTestUtils.renderIntoDocument之前,您可以使用refs将组件的引用传递给ReactTestUtils.Simulate.click

我已经看到了这个问题 – How to interact with components rendered by ReactTestRenderer / Jest但我认为API已经改变,因为我的组件实例没有find()方法.

我找到了解决方案.由于您正在使用react,我假设onClick处理函数作为props的一部分传递给按钮.所以你可以通过按钮的道具来访问它.
  1. component.root.findByType('button').props.onClick();

或者,如果您有多个按钮,则可以执行以下操作:

  1. component.root.findByProps({className="btn btn-lg btn-primary btn-danger"}).props.onClick();

猜你在找的React相关文章