sdynk02 Posted April 8, 2017 Posted April 8, 2017 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 !!
rootx Posted April 8, 2017 Posted April 8, 2017 Use this https://www.autoitscript.com/autoit3/docs/libfunctions/_IETagNameGetCollection.htm
sdynk02 Posted April 8, 2017 Author Posted April 8, 2017 19 minutes ago, rootx said: Use this https://www.autoitscript.com/autoit3/docs/libfunctions/_IETagNameGetCollection.htm Thanks for your help, Anyway, pls tell me next step. I'm just a new guy in Autoit how can I click on it without display on screen ? . By the way, how can i the contents beside the Label FuelOrder ? Thanks again
rootx Posted April 8, 2017 Posted April 8, 2017 (edited) 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 April 8, 2017 by rootx
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