input.focus()
酵素でテストするにはどうすればよいですか。私はreactでスクリプトを書いています。私のコードは以下の通りです:
public inputBox: any;
componentDidUpdate = () => {
setTimeout(() => {
this.inputBox.focus();
}, 200);
}
render() {
return (
<div>
<input
type = 'number'
ref = {element => this.inputBox = element } />
</div>
);
}