searay200 0 Posted December 11, 2013 Hi, Looking for some advice on best way to automate find objects and text boxes in a web page: ctalog field<input name="ctalognum" class="tblFieldInputMid" type="text" autocomplete="off"/>item field<input name="item" class="tblFieldInputMid" type="text" autocomplete="off"/>description <input name="submit" class="buttonFace" type="submit" value="submit"/> Advice welcomed and appreciated. Share this post Link to post Share on other sites
gruntydatsun 12 Posted December 11, 2013 (edited) Have a look at the sample code in the help file under IE.au3. http://www.autoitscript.com/autoit3/docs/libfunctions/_IEFormSubmit.htm Edited December 11, 2013 by gruntydatsun Share this post Link to post Share on other sites
searay200 0 Posted December 12, 2013 Will thsi work with objects in frames? Share this post Link to post Share on other sites
Valuater 129 Posted December 12, 2013 Will thsi work with objects in frames? Yes... IE.au3 can handle Objects in frames too 8) Share this post Link to post Share on other sites
JohnOne 1,603 Posted December 12, 2013 Handling elements in cross domain frames can fail. AutoIt Absolute Beginners  Require a serial  Pause Script  Video Tutorials by Morthawt  ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
searay200 0 Posted December 12, 2013 HI, can anyone point me at some code snippets for working frames? Thanks. Share this post Link to post Share on other sites
searay200 0 Posted December 12, 2013 Basically looking at putting some script into a text box within a frame? Share this post Link to post Share on other sites
jdelaney 313 Posted December 12, 2013 The first param of the _IE functions can use the IE Document object, or a frame (sets context of where to search). Use helpfile for examples, post code, and others will assist with issues. _IEFrameGetCollection _IEFormElementGetObjByName IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window. Share this post Link to post Share on other sites
Valuater 129 Posted December 12, 2013 IE Builder can show you all the frames, objects and other important information from the web page... 8) Share this post Link to post Share on other sites
searay200 0 Posted December 12, 2013 Looked at this further and have found its atually objects in a table within a frame which has nested tables? Share this post Link to post Share on other sites