dushkin Posted July 27, 2010 Posted July 27, 2010 Hello, Does Autoit supports automating of asp, php, etc. pages ? When I tried to access an HTML section that was created on the server inside asp file I always failed. Is there a specific way to handle this? Thanks.
FuryCell Posted July 27, 2010 Posted July 27, 2010 The IE functions would be a good place to start. HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
dushkin Posted July 27, 2010 Author Posted July 27, 2010 (edited) Thank you FuryCell For the answer.But it is too generl for me. I am familar with most of the IE functions.The problem is that, specificaly, I need to access the following code that is laying under the frame node:<frame .....> <html> <head>...</head> <body ... > <span ...> <div id="123"...> . . </frame> And I can't. For example, I cannot get any object using its ID, for example the div object, which is under the frame node. I tried _IEGetObjByID but it didn't give me the object. Now the html code starting at the html tag is a server side generated code, build by asp. So I am "affraid" it is related.Thanks. Edited July 27, 2010 by dushkin
StandardUser Posted July 27, 2010 Posted July 27, 2010 For example, I cannot get any object using its ID, for example the div object, which is under the frame nodeYou should get a refference to the frame first, using _IEFrameGetObjectByName, then use it in _IEGetObjById
dushkin Posted July 27, 2010 Author Posted July 27, 2010 You should get a refference to the frame first, using _IEFrameGetObjectByName, then use it in _IEGetObjById Thanks.Well, as I mentioned, that was exactly what I done, but IEGetObjById retuned me 0 with a NO MATCH error.
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