Hello,
I have an input field for an e-mail address (string) on a website. This value also appears in alert, but in the payload it says null (see screenshot).
log in your browser's dev tools console the value to see whether you are indeed getting the correct element value
if your selector doesnt find any element it returns null
let emailvalue = document.getElementById("exampleInputEmail1").value;
console.log(emailvalue)