如果我使用
Set ie = CreateObject("InternetExplorer.Application")
要打开一个 URL,我可以使用以下
ie.Navigate "http://google.com"
但我不能选择这个选项,因为“InternetExplorer.Application”会打开 64 位 IE 浏览器。我需要 32 位 IE 浏览器才能工作。所以我使用了以下
set Objshell=CreateObject("WScript.shell")
return=Objshell.run ("""C:\Program Files\Internet Explorer\iexplore.exe""" & "www.google.com")
所以在这种情况下,我不知道如何导航或使用getElements()
打开的浏览器窗口。
请让我知道如何处理这个!