I am beggining to work with automate internet explorer using vba. I am trying to post a new status on facebook.

I have logged to the facebook account and then i wrote the following:

ie.Document.forms(3).elements(10).Focus
ie.Document.forms(3).elements(10).Value = ""
ie.Document.forms(3).elements(10).Value = "fff1231f"
ie.Document.forms(3).GetElementsByTagName("button")(0).Click
i can see the "fff1231f" inside the textarea but on last line (click) i got a message that the status is empty.

I need your some help.

Thanks