Vĩ Kha Blog Posted September 10, 2016 Posted September 10, 2016 I want to login my router (IP: 192.168.1.1) but I can't read the POST to login by Firebug or LiveHTTPHeader. So, How to I can login my router with AutoIT. Thank you for you reply
genius257 Posted September 10, 2016 Posted September 10, 2016 you could look into the _IE functions from the AutoIt docs. Here's some code from the _IEFormElementSetValue example 2: ; Get a reference to a specific form element and set its value. ; In this case, submit a query to the Google search engine #include <IE.au3> Local $oIE = _IECreate("http://www.google.com") Local $oForm = _IEFormGetCollection($oIE, 0) Local $oQuery = _IEFormElementGetCollection($oForm, 4) _IEFormElementSetValue($oQuery, "AutoIt IE.au3") _IEFormSubmit($oForm) My highlighted topics: AutoIt Package Manager, AutoItObject Pure AutoIt, AutoIt extension for Visual Studio Code Github: AutoIt HTTP Server, AutoIt HTML Parser
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now