Может ли кто-нибудь помочь мне протестировать input.focus() в ферменте. Я пишу скрипт с реакцией. Мой код ниже.
public inputBox: any;
componentDidUpdate = () => {
setTimeout(() => {
this.inputBox.focus();
}, 200);
}
render() {
return (
<div>
<input
type = 'number'
ref = {element => this.inputBox = element } />
</div>
);
}