玩笑模拟在键盘上单击TAB并测试autoFocus

时间:2018-09-10 14:15:30

标签: jestjs

在键盘上单击TAB后,我需要在Jest中创建自动测试以验证焦点更改。 使用TAB重新聚焦-这是浏览器的本机功能,因此DOM中没有用于标签点击的功能 我尝试使用下一个:   *

wrapper.currentComponent
      .find('input')
      .filterWhere(n => n.props().autoFocus === true)
      .simulate('keyDown',{key: 'Tab', keyCode: 9, which: 9});

* 但这不是将自动对焦更改为下一个输入

有人可以帮我做这个模拟

0 个答案:

没有答案