arunachandu Posted April 27, 2011 Posted April 27, 2011 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.
wakillon Posted April 27, 2011 Posted April 27, 2011 See _IEFormElementSetValue function ! #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.0 - WIN 11 24H2 X64 - Other Examples Scripts
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