Jump to content

Recommended Posts

Posted

Hi ,

When i run this script i get "no forms"

#include <IE.au3>

Opt("WinTitleMatchMode", 2)

$oIE = _IECreate ("SOMEURL")

$oForms = _IEFormGetCollection ($oIE)

MsgBox(0, "Forms Info", "There are " & @extended & " forms on this page")

For $oForm In $oForms

MsgBox(0, "Form Info", $oForm.name)

Next

How can i set a value into textbox without form?

Thanks in advance ,

Poli .

Posted

Some sites may not have forms.

Check the source code or use Debugbar for example.

Then use _IEGetObjById or another of the IE functions.

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...