将文字插入网页

时间:2019-09-18 14:27:34

标签: excel vba internet-explorer

我一直试图在this webpage上的“选择要上传的文件:”框中插入文本(路径)。这是我的一些代码...

Set ie = CreateObject("InternetExplorer.Application")

With ie
    .Visible = True
    .Navigate "http://www.seltron.net/apc/powerchute.php"
    .Top = 0
    .Left = 0
    .Height = 1056
    .Width = 1936
End With

Do Until Not ie.Busy And ie.ReadyState = 4
    DoEvents
Loop

' Insert path on webpage

ie.Document.GetElementsByTagName("input")(1).Focus
ie.Document.GetElementsByTagName("input")(1).Value = "C:\Program Files (x86)\APC\PowerChute Personal Edition\"

但是我不成功。不会引发错误,但是文本不会插入框中。

任何有关如何使用VBA以编程方式将所需路径插入框中的建议都将受到赞赏... TIA,罗恩

0 个答案:

没有答案