1

何らかの理由で、以下の VBS は IE 8 では魅力的に機能しますが、両方のラップトップの IE9 では Object Required at を取得し.getElementます。

どうすればこれを修正できますか。

WScript.Quit Main

Function Main
  Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
  IE.Visible = True
  IE.Navigate "http://desistream.tv/en/index.shtml"
  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

編集

これは私がこれまでにJScriptで得たものです

var WshShell = WScript.CreateObject("WScript.Shell");
WshShell.Run("Chrome www.desistream.tv", 10, true);
WScript.Sleep(500); 
4

1 に答える 1

1

正しい名前を使用する必要があります。指定した名前は ID ではなく Name プロパティなので、次のようになります。

.getElementByID("login_username").value = "myuser"
.getElementByID("login_password").value = "mypass"

次のようにする必要があります。

.getElementByID("username").Value = "myuser"
.getElementByID("pass").Value = "mypass"
于 2013-01-10T00:13:21.443 に答える