I am doing an automation using selenium, I need an html code to click on the browse window (marked 1) and select the file (callform.txt) and update to the source filelist path 
|
|
|||
|
You can use autoit.Just Download the autoit software from given link and install it. Write a few lines script in autoit according to your need and call the compiled exe before the line which causes that window to appear. The Autoit WIndow Info Tool will help you in identifying the ID and class for the desired controls |
|||
|
|
|
To upload files: 1.use autoit tool- a. Record the the part of the clicking the Browse Button and select the file. b. Convert the AutoIt script into .exe. c. Use the below script
For more on Auto it refer http://automationtricks.blogspot.in/2010/09/how-to-upload-file-in-selenium.html
|
|||
|
|
|
The upload window is a Windows component, you can not click on desired file using Selenium. The way to doing this is to use Autoit. Get the name of upload window and type the existing file name in "File name" input box. then on click the "Open" button. Here is the sample code -
The "classnameNN(Edit1/Button1)" can be different, please check the "classnameNN" of your window by Autoit window info. |
|||
|
|
|
Use Xpath of the search text box, try this
|
|||||
|
|
You can use Robot JAR file here. Using Robot JAR file you can use the keyboard short cut keys. |
|||
|
|

SendKeys, but if it doesn't work, you'll probably have to fish out a third party solution like AutoIT. – Arran Nov 29 '12 at 14:54