I am having trouble entering text in the search box when after I think it is a proofreading identifier tag. I got the identifier from the source code of the page. I have done this before with other websites. Can someone please help me? Is there any other way to do this?
Sub FileUpload() Dim IEexp as Object IEexp.visible = True IEexp.Navigate ("www.example.com") 'this is where the problem IEexp.Document.GetElementByID("step1_id_bean_newSupportingDoc_description").Value _ = "monthly update" End Sub
I get an error "Automation" An object is disconnected from its clients "
The source code where I pulled the identifier from:
<td class="Label">Description</td> <td class="Data"><input type="text" name="bean.newSupportingDoc.description" size="60" maxlength="250" value="" id="step1_id_bean_newSupportingDoc_description" class="NoBorder"/> </td>
source share