I would like to know whether I can create a VB Script that can auto login a website
It is okay for the auto launch feature with the following script
dim IE
set IE = CreateObject("InternetExplorer.Application")
IE.Navigate ("URL")
set IE = nothing
I can also make a "Shell" that mimic the keyboard that type in all the login name and password like this
dim Shell
set Shell = CreateObject("Wscript.Shell")
Shell.keysends ("Command")
set Shell = nothing
However, I would like to know whether there will be another way of doing this (Without using the Wscript.Shell)?
And in my case, after logging in the site, I have to "Click" several links to download data from the site. However, those links are written in JavaScript. Can I execute those JavaScript with VB Script? Or I need to use the Wscript.Shell function?
It is okay for the auto launch feature with the following script
dim IE
set IE = CreateObject("InternetExplorer.Application")
IE.Navigate ("URL")
set IE = nothing
I can also make a "Shell" that mimic the keyboard that type in all the login name and password like this
dim Shell
set Shell = CreateObject("Wscript.Shell")
Shell.keysends ("Command")
set Shell = nothing
However, I would like to know whether there will be another way of doing this (Without using the Wscript.Shell)?
And in my case, after logging in the site, I have to "Click" several links to download data from the site. However, those links are written in JavaScript. Can I execute those JavaScript with VB Script? Or I need to use the Wscript.Shell function?