i am trying to fill an Input-text in HTML page via javascript (chrome extension).
const inputNom = document.querySelector('....'); inputNom.value = 'Jean ...';
works fine and i can see the input value in the Input-text.
By clicking the submit button,
its looks like the informations validator
in the submit button only detects the value if it is entered manually.
is there some way to simulate a manually keypress on this input.
thank you every body