My goal is super simple, I just want to fill a webpage using .vbs and I did almost all, only remains the dropdown list
I used:
Document.All.Item("CamposTrat[0]").Value = "FINALIZADO"
and Document.All.Item("CamposTrat[0]").SelectedIndex = 1
but neither worked.
The .SelectedIndex = 1
almost worked, it "selected" the Option "FINALIZADO" with blue selection (exemple & html code), but don't setted "FINALIZADO" as the 'value' on screen. It felt like that was missing to press "Enter" to confirm.
I just wanna put "FINALIZADO" without click or use "SendKeys{"FINALIZADO"}"
. I wanna a beautiful code :D
Ps: I dont know much about java/vbscript. I don't know yet how to configure those types of codes. If someone can send the "full" code, it will help a lot.