Is there any way to usefully test an Uploadify file upload with Selenium? I'm using Capybara with Rails, but really, any solution with Selenium would be a starting place. I'm worried I may have to disable Uploadify for Selenium testing.

link|improve this question
I'd suggest testing at the controller level with a small file, if you want an upload integration test. Issues with uploaders in my experience are differences in positioning a SWF file (z-index) not firing/handling javascript correctly, but the upload plugin you are using should have resolved those issues for you. – Andy Atkinson Nov 1 '11 at 14:31
Note: A good answer will also show how to actually select a file for Uploadify. So if you want the bounty points please answer to this too – Gabi Purcaru Dec 2 '11 at 16:01
The same question on: stackoverflow.com/q/4508460/698718 – Mark Guk Dec 2 '11 at 17:40
The bounty ends in one day; I'd be sad to not be able to award it to anyone. If you know more about this topic please share. – Gabi Purcaru Dec 8 '11 at 11:57
Sadly, the bounty ended without any activity. – Gabi Purcaru Dec 10 '11 at 13:39
show 1 more comment
feedback

2 Answers

Look at Flash-selenium project. But it uses JS so you possibly could do interactions with Flash by yourself using JS.

link|improve this answer
feedback

I was able to get this to work, by interacting with the JS directly. I added this to my test helper.

def upload_via_uploadify file_input_id, path
  page.execute_script("$('##{file_input_id}').show()")
  attach_file(file_input_id, path)
  page.execute_script("$('##{file_input_id}').uploadifyUpload()")
end

You can't actually trigger a button click because of the flash, but besides that it works great and you can test the rest of the interaction goes as planned

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.