| |
bengalurege
Posts: 0
Score: 0
Joined: 2/1/2008
Status: offline
|
I have very simple requirement. I am opening a intranet website using Vbscript. This website brings up a Login popup soon after the page is loaded. Now my requirement is to key in the Login and password details and click on "OK" button. Please assist me in achieving this. This is how my "website.vbs" looks. 'Script starts here Option Explicit Dim objIE, objShell, strText, intConstants, strTitle, intAns, objExplorer Dim strScriptName, strScriptPath, strScriptFolder, strExcelPath Set objExplorer = CreateObject("InternetExplorer.Application") objExplorer.Navigate "<Websiteaddress>" objExplorer.ToolBar = 1 objExplorer.Visible = 1 objExplorer.StatusBar = 1 objExplorer.Width = 1000 objExplorer.Height = 700 objExplorer.Left = 0 objExplorer.Top = 0 'dont know how to proceed further after the popup apears Note: this is not a Vbscript generated Popup Thank you in advance
|
|