当我尝试这样做时,它会根据代码的其他位向我抛出一些错误,例如方法与该对象没有关联或出现未指定的错误。
我正试图用字符串查看Excel单元格列表,并使用Web表单搜索这些字符串。
我的程式码目前看起来像这样:
Sub YSF_automation()
Application.ScreenUpdating = False
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "URL"
While IE.Busy
DoEvents
Wend
IE.Document.getElementsByName("ElementName")(0).Value = "test"
End Sub
1条答案
按热度按时间erhoui1w1#
请尝试以下操作