Nishant Posted November 23, 2006 Posted November 23, 2006 How to click on 'Open' button, from the file dialog box. Please help
florisch Posted November 23, 2006 Posted November 23, 2006 "ControlClick" should do that and AutoIt Window Info tool for the parameters. From the helpfile: ControlClick Sends a mouse click command to a given control. ControlClick ( "title", "text", controlID [, button][, clicks]] )
Nishant Posted November 23, 2006 Author Posted November 23, 2006 Here is the Script:- #include<IE.au3> $var = FileOpenDialog("Choose a Picture", "C:Temp", "Images (*.jpg;*.bmp)", 1 + 4) _Uploadpicture($var) Func _Uploadpicture($sPath) $oIE = _IECreate ("www.imageshack.us") $hwnd = _IEPropertyGet ($oIE, "hwnd") $oForm = _IEFormGetCollection ($oIE, 0) $oFile = _IEFormElementGetObjByName ($oForm, "fileupload") $oFile.focus ControlSend($hwnd, "", "Internet Explorer_Server1", $sPath) _IEFormSubmit ($oForm) EndFunc ;==>_Uploadpicture Now My Steps:- 1. Open file dialog box 2. Select a file 3. Insert the selected file path in web page file control 4. click on submit I have issue with Step2. "Select a file" Right now I am selecting a file manually. But I want to select it automatically. Issue: Help me to automate this.
DaleHohm Posted November 23, 2006 Posted November 23, 2006 What do you mean by "But I want to select it automatically"? If you know what file you want already, why bother with the FileOpenDialog? Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
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