Jump to content

Recommended Posts

Posted

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?

Posted

Something like this should work...

$oText = _IEGetObjById ( $oIE, "Text2")
_IEFormElementSetValue ($oText, "Hey! This works!")
thank you very much! it really works!

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
×
×
  • Create New...