I know how to set value in text-input.
document.GetElementsByTagName("input")
.GetElementsByName("kwota1")[0].SetAttribute("value", "12");
And now I want to choose option from select. I can find it by name, and what next should I do?
document.GetElementsByTagName("select").GetElementsByName("waluta1")[0]
1 Answer