I am trying to use this vbs file to sign in my gmail account from vbs:
On Error Resume Next
Const PAGE_LOADED = 4
Set objIE = CreateObject("InteetExplorer.Application")
Call objIE.Navigate("https://accounts.google.com/signin/challenge/sl/password#password")
objIE.Visible = True
Do Until objIE.ReadyState = PAGE_LOADED : Call WScript.Sleep(100) : Loop
objIE.Document.all.Email.Value = "useame"
Call objIE.Document.all.gaia_loginform.submit
objIE.Document.all.Passwd.Value = "password"
Call objIE.Document.all.gaia_loginform.submit
If Err.Number <> 0 Then
msgbox "Error: " & err.Description
End If
Call objIE.Document.all.gaia_loginform.submit
Set objIE = Nothing
I am getting error: Object doesn't support this property or method.
How can i fix this and sign in to my account ?
Recent Questions...
ما را در سایت Recent Questions دنبال میکنید
برچسب:
نویسنده: استخدام کار
بازدید: 248
تاريخ: يکشنبه
6 تير
1395 ساعت: 16:56