I'm building a bot that automatically fills and submits a form. I've searched through web and I found
document.querySelector('input[name="input_price"]').value = '2';
and
var el = document.getElementsByName("input_price")[0];
el.value = "$2.00"
both work - they fill input. But when input is filled, a checkbox is supposed to come up, and it doesn't. Without checkbox I can't continue. If I manually add literally anything to input, checkbox comes up. Is there any way to fix this?