I have an input like this:
<input class="form-control" id="captchaInput" type="text" placeholder="Type characters here" data-reactid=".6.0.1">
Through Tampermonkey, I'm filling in this value like this:
document.getElementById("captchaInput").value = captchaValue;
When I try and submit this, it says "doesn't match"
- but if I were to type the exact same thing manually it works.