Capel Posted March 17, 2010 Posted March 17, 2010 A page I'm automating has a bunch of js variables that I would like to access using AutoIT. Can this be done and if so how?
PsaltyDS Posted March 17, 2010 Posted March 17, 2010 Something like this: $vVal = $oIE.document.parentwindow.eval("java script:VariableSpec") Search for posts by DaleHohm for more. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Capel Posted March 18, 2010 Author Posted March 18, 2010 In case others are asking the same question, here is what the page HTML looks like: <script type="text/javascript"> //<![CDATA[ var id='ctl11_id_id'; var name='ctl11_name_name'; var location='ctl11_location_location'; var order_dateTime='ctl11_order_dateTime_order_dateTime'; //]]> </script> And here is the AutoIT code to grab the variable: $oTboxID = _IEGetObjById ($oIE,$oIE.document.parentwindow.eval("id")) Thanks again Dsalty.
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