私はこのVBScriptを持っていますが、スクリプトに問題はありませんが、IEの代わりにChromeで開きたいです。
私はVBスクリプティングに非常に慣れていません。誰かが私を助けてくれませんか。
WScript.Quit Main
Function Main
Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
IE.Visible = True
IE.Navigate "http://gmail.com"
Wait IE
With IE.Document
.getElementByID("login_username").value = "myuser"
.getElementByID("login_password").value = "mypass"
.getElementByID("frmLogin").submit
End With
End Function
Sub Wait(IE)
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
End Sub
Sub IE_OnQuit
On Error Resume Next
WScript.StdErr.WriteLine "IE closed before script finished."
WScript.Quit
End Sub
コードを見てください。 Chromeを起動するためのコードがあります
set WshShell=WScript.CreateObject("WScript.Shell")
strAnswer = InputBox("Please enter a name for your new file:")
WshShell.run "chrome.exe"
WScript.sleep 100
WshShell.sendkeys "www.google.com"
WshShell.sendkeys "{ENTER}"
ChromeはVBScriptをサポートしていないためです。 http://productforums.google.com/forum/#!category-topic/chrome/give-feature-feedback-and-を参照してください)提案/ xHWNXByKdhM