Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a page on website that is using the awesome drag and drop file script http://aquantum-demo.appspot.com/file-upload to handle FireFox and Chrome drag and drop file uploads. Our team is trying to have integration tests for all the overall functionality of the sight using selenium. I don't see if there is a way in selenium to do this kind of functionality testing, or even fake it. Is there a way to do this in Selenium (or even another web testing automater?), or even a reasonable way to "fake" having the file drop down?

Edit:
For clarification - I'm not trying to drag things inside the browser to drop. I'm dragging files from outside the browser onto a button.

share|improve this question

2 Answers

up vote 1 down vote accepted

No

Selenium can only interact with things rendered inside the browser. It cannot interact with OS level things (e.g. OS pop up dialogue boxes, OS Windows like file explorer, etc)

share|improve this answer

Did you check the http://seleniumhq.org/docs/03_webdriver.html#tips-and-tricks ?

share|improve this answer
I assume you're referring to the drag and drop mentioned there. That is for dragging elements in the browser to other elements in the browser. I'm dragging files from windows explorer onto an area of the browser. – Seneca Apr 27 '11 at 13:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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