hi, i hope i am in the right place for that issue,
i am having a code in VBA which opens an IE browser, then goes to a website where i need to update some info, and after the update i need to click the save button, i have the code for it, but the problem is the save button is not getting activated until
you manually put in some info on the page, then the button gets activate and you can click it, can some one get me some idea how i can get around it?
this code what i made actually puts in the table field the value 5, but somehow the webpage dont recognize that i changed something so the save button is not getting activate.
here is my code;
Set objCollection = ie.Document.getelementsbytagname("input")
i = 0
While i < objCollection.Length
If objCollection(i).Name = SKU Then
objCollection(i).Value = "5"
End If
i = i + 1
Wend