I have this thirs-part website, where if I select one country on the right
(as you can see in the video: https://i.gyazo.com/3a22aabb576f1e43040dae82204bb883.mp4 )
it changes shipping fees (in violet).
If instead, I use js ( from the chrome console for instance) to select one country using
document.getElementById("order").value = "IT";
it will select the country but the fees on the don't change. There is a way to let it works using javascript?
I have tried to also perform a click by
document.getElementById("order").click();
after selecting a value but it doesn't work.