Max-out the 10fastfinger's typing test WPM
const input = document.getElementById('inputfield')
const nextWord = new KeyboardEvent('keyup', { 'key':' ', 'keyCode': 32 })
nextWord.which = 32
const speedrun = () => {
const currWord = document.getElementsByClassName('highlight')[0]
if (currWord) {
input.focus()
input.value = currWord.textContent
input.dispatchEvent(nextWord)
}
}
setInterval(speedrun, 100)