babsdoc Posted April 22, 2013 Posted April 22, 2013 Hi, I'm new to AutoIt.I'm trying to automate the submit button at bseindia, I would like to avoid the "mouse coordinates and click" method, please let me know how this can be done. Thanks.
Nessie Posted April 22, 2013 Posted April 22, 2013 Take a look in the help file on _IECreate and related function to do what you want. Hi! My UDF: NetInfo UDF Play with your network, check your download/upload speed and much more! YTAPI Easy to use YouTube API, now you can easy retrive all needed info from a video. NavInfo Check if a specific browser is installed and retrive other usefull information. YWeather Easy to use Yahoo Weather API, now you can easily retrive details about the weather in a specific region. No-IP UDF Easily update your no-ip hostname(s). My Script: Wallpaper Changer Change you wallpaper dinamically, you can also download your wallpaper from your website and share it with all! My Snippet: _ImageSaveToBMPConvert an image to bmp format. _SciteGOTO Open a file in SciTE at specific fileline. _FileToHex Show the hex code of a specified file
codernoobx Posted April 22, 2013 Posted April 22, 2013 Well there may be better methods to do this ,but here is how i would do it #include <ie.au3> $oIE = _IECreate("http://www.bseindia.com/markets/equity/EQReports/StockPrcHistori.aspx?flag=0&expandable=7") _IELoadWait($oIE) Local $oDiv = _IEGetObjById($oIE, "ctl00_ContentPlaceHolder1_btnSubmit") _IEAction($oDiv, "click")
babsdoc Posted April 22, 2013 Author Posted April 22, 2013 Thanks Nessie, I was going through the help file too codernoobx, your code got me thinking in the right direction. I'm a self taught guy and your reply gave me some nice pointers for my code. Thanks to both again.
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