Jump to content

Get In a Hidden Link on a Local Website


Recommended Posts

Here is my problem.

I already got the (log in code) to my local website. 

but then it only shows the tree items. 

So how can i get in the "Fuel Order - Est Payload" and get all the contents in there. 

Thanks for your help and read my stuck also. 

Anw, Sorry for my bad english !!

32123123.png

3123.png

65423.png

Link to comment
Share on other sites

Today I have no time, anyway... one example to start... I think you will have to spend much time studying the autoit help.

example: imagine a page with one input box userlogin and one button.

#include<IE.au3>


RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE","iexplore.exe","REG_DWORD",0)

$oIE=_IECreate()
_IELoadWait($oIE)
;navigate
_IENavigate($oIE,"http://yourpage")

$input=_IEGetObjById($oIE,"user_login")
;Set Inputs
_IEFormElementSetValue($input,"yourvalue")

;submit event
Local $oSubmit = _IEGetObjByName($oIE, "your button submit")
_IEAction($oSubmit, "Click")
_IELoadWait($oIE)

 

Edited by rootx
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...