Jump to content

Recommended Posts

Posted

I am very new to AutoIT as well as coding.

I opened IE browser and passed google url.

Now i want to go to search box and enter the string.

Can some one tell me how to write the script for this.

I think it is a basic question but please bare with me.

Posted

See _IEFormElementSetValue function ! Posted Image

#include <IE.au3>

$oIE = _IECreate ("http://www.google.com")
$oForm = _IEFormGetObjByName ($oIE, "f")
$oQuery = _IEFormElementGetObjByName ($oForm, "q")
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
_IEFormSubmit ($oForm)

AutoIt 3.3.18.0 X86 - SciTE 4.4.6.0WIN 11 24H2 X64 - Other Examples Scripts

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