I am using Selenium RC with Junit framework. I am trying to upload a file using attachFile() method.
attachFile: (Information collected from selenium API http:/
I just succesfully uploaded files using Selenium set to use *firefox as the browser. I guess they haven't updated the documentation yet.
I am using the Ruby client so it was something like this to get it to work
$browser.click "css=input.file" # This is the 'Choose File' button
$browser.type "css=input.file", "/absolute/path/to/file.file"