在我认为是正确的ID标签之后,在搜索框中输入文本时遇到了一些麻烦。我从页面的源代码中获得了ID。我之前在其他网站上都这样做过。有人可以帮我吗?还有另一种方法吗?
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
我收到“自动化错误,调用的对象已与其客户端断开连接”
我从中提取ID的源代码:
<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>
最佳答案
如果使用Set IEexp = New InternetExplorerMedium
,则无需更改“Internet选项”中的设置。它会使用Medium Integrity Application设置自动实例化IE对象。
关于internet-explorer - VBA-IE GetElementByID无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15257179/