Hey...
i'm trying to select value from webbrowser combobox using this method :
Dim theother =
(
From X In WebBrowser1.Document.GetElementsByTagName("select").Cast(Of HtmlElement)()
Where X.GetAttribute("name") = "expYear" Select X.GetElementsByTagName("option")
).FirstOrDefault

Dim othitem = (From X In theother.Cast(Of HtmlElement)() Where X.InnerText = "2019").FirstOrDefault
othitem.SetAttribute("selected", CStr(True))
othitem.RaiseEvent("onchange")
but it didn't help in my case it just changed the value but when i click register it says the the combobox value is nothing so is there any alternative method to select or click at my value ?
Thanks for reading !