I have an issue with changing value of dropdown with js.
Already implemented chaging value of input using document.execCommand("insertText", false, "text").
const firstName = document.getElementById("payment.billingAddress.firstName");
firstName.focus();
firstName.select();
document.execCommand("insertText", false, "Rockers");
But dropdown is not working with it.
Let me know how to do manage it if you has experience in it already.