sovietunion Posted June 11, 2008 Posted June 11, 2008 hello i want to set value to the input box(<input type="Text" id="Text2" name="Text2" value="1"/>)using $oForm = _IEFormGetObjByName ($oIE, "fomname") $oText = _IEFormElementGetObjByName ($oForm, "Text2") _IEFormElementSetValue ($oText, "Hey! This works!") and what i want more is to get form name, problem is that page is oddly writed and there is no form on page. is there any way to do?
Moderators big_daddy Posted June 11, 2008 Moderators Posted June 11, 2008 Something like this should work... $oText = _IEGetObjById ( $oIE, "Text2") _IEFormElementSetValue ($oText, "Hey! This works!")
sovietunion Posted June 11, 2008 Author Posted June 11, 2008 Something like this should work... $oText = _IEGetObjById ( $oIE, "Text2") _IEFormElementSetValue ($oText, "Hey! This works!") thank you very much! it really works!
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