NTBM Posted April 24, 2012 Posted April 24, 2012 (edited) I am trying to write an app to auto login to a website and then send commands to it. The website is an internal to an ip controlled relay box (allows switching devices on/off via website) i have done it with a gui that calls an ie session however this is ugle and would like to do it outside of ie. here is the html of the login screen expandcollapse popup<title>IP Family</title> <center> <p align="left"><font color="#0033ff" size="5" face="Verdana, Arial, Helvetica, sans-serif"><em><strong><font size="4">Aviosys Inc.</font></strong></em></font></p> <p align="left"><font size="+1" face="Georgia,Arial"><font color="#0000ff" size="+2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#000000" size="4" face="Arial"><b>Welcom to IP Family WebControl</b></font></strong></font></font></p> <table border="0" width="392" bgColor="#dfdfdf" align="left"> <tbody><tr> <td noWrap=""> <form method="post" name="login" action="/tgi/login.tgi"> <center> <table cellSpacing="0" cellPadding="10" width="96%" align="center" NAME="myTable"> <tbody><tr vAlign="top" align="left"> <td colSpan="2"><font size="2" face="Arial, Helvetica, sans-serif">Please enter User name & Password. (maximum = 8)</font></td></tr> <tr vAlign="top" align="left"> <td><font face="Verdana,Arial"><font size="-1">User Name</font></font></td> <td><input name="Username" maxLength="32" value="admin" size="32" type="text"></td></tr> <tr vAlign="top" align="left"> <td height="46"><font face="Verdana,Arial"><font size="-1">Password</font></font></td> <td height="46"><input name="Password" maxLength="32" value="" size="32" type="password"></td></tr> <tr vAlign="top" align="left"> <td></td> <td> <p align="center"><input onclick="calcResponse(); return false;" name="Submitbtn" value="	 OK	 " type="Submit"> <input onclick="document.login.Username.value='';document.login.Password.value=''" name="Cancel" value=" Cancel " type="button"> </p></td></tr></tbody></table></center> <input name="Challenge" value="k7n....." type="hidden"> <input name="Response" value="" type="hidden"> </form></td></tr> <tr> <td> <p align="right"><a href="http://www.aviosys.com" target="_blank">www.aviosys.com</a></p></td></tr></tbody></table> </center> and here is the code i have so far <snip> this results in a failed login screen, which i think is due to the shallange field but am unsure where to go from here? Any advise would be great. Cheers Edited April 24, 2012 by Melba23 Code removed
water Posted April 24, 2012 Posted April 24, 2012 I am trying to write an app to auto login to a websitePlease make sure to read the forum rules. Especially the part about login automation: SPAM tools including instant messenger or forum auto-posters. This includes forum or site auto-login methods. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Moderators Melba23 Posted April 24, 2012 Moderators Posted April 24, 2012 NTBM, Please read and follow the Forum rules to which water linked. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts