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

I think that everybody how uses Webdriver for test automation must be aware of its great advantages for web development.

But there is a huge issue if file uploading is part of your webflow. It stops being test automation. The security restriction of browsers (invoking file selection) practically make it impossible to automate tests.

Afaik the only option is have webdriver click the file upload button, sleep the thread, have developer/tester manually select the file and then do the rest of the web flow.

How to deal with this, is there a work around for it ? Because it really can't be done like this. It wouldn't make sense.

This is the only case I know of when browser security restrictions do not apply:

<script language=javascript>   
  function window.onload(){   
          document.all.attachment.focus();   
          var WshShell=new ActiveXObject("WScript.Shell")   
          WshShell.sendKeys("D:\MyFile.doc")
  }   
</script>
share|improve this question
Interesting workaround technique, never thought about that. – David Jul 24 '11 at 5:13
[I posted my python solution here][1]. It might work for other languages, too. [1]: stackoverflow.com/a/11872608/471376 – JamesThomasMoon1979 Aug 8 '12 at 20:31

4 Answers

up vote 16 down vote accepted

Webdriver can handle this quite easily in IE and Firefox. Its a simple case of finding the element and typing into it.

driver = webdriver.Firefox()
element = driver.find_element_by_id("fileUpload")
element.send_keys("myfile.txt")

The above example is in Python but you get the idea

share|improve this answer
Hey, could you please elaborate on this one ? I don't think it is possible. First off, what is myfile.txt ? Is it supposed to be path on a file on filesystem ? The only way this can be done is the Microsoft ActiveX bullshit (see my edited answer) afaik. A tried what you say and I got ERROR page with Firefox driver. – Sloin May 25 '11 at 20:03
you are right, it should work... Guys on irc channel was telling me that there is no way of doing this...great :) – Sloin May 25 '11 at 20:25
2  
Thank you AutomatedTester, it really works in Firefox. I was mislead... – Sloin May 25 '11 at 20:52
3  
Just to add that this now works in google chrome too! – hwjp Jan 12 '12 at 14:03
1  
I would like to point out that while the code snippet above works, it is primarly for local WebDriver instances. Should you be using RemoteWebDriver, Grid2, or SauceLabs, you may need to add more code to get it to work. And it becomes a 2 step process over Remote/Grid - file is copied over (via JSONWireProtocol in Selenium) from where Selenium code is run (as source location) to the browser session machine (remote/grid node) and then from there is finally uploaded to the website/app from the node machine. More details in my next comment, as I run out of space here. – David Jan 22 at 21:46
show 1 more comment

Using AWT Robots is one option, if you're using Java, which you are. But it's not a good option, it is not very dependable, and not clean at all. Look here

I use HttpClient and run a few tests outside of Selenium. That's more dependable and cleaner.

See the code below. You'll need more exception handling and conditionals to get it to suit your job.

HttpClient c = new HttpClient();
String url = "http://" + cargoHost + ":" + cargoPort + contextPath + "/j_security_check";
PostMethod post = new PostMethod(url);
post.setParameter("j_username", username);
post.setParameter("j_password", password);
c.executeMethod(post);

url = "http://" + cargoHost + ":" + cargoPort + contextPath + "/myurl.html";
MultipartPostMethod mPost = new MultipartPostMethod(url);
String fileNameWithPath = this.getClass().getClassLoader().getResource(filename).getPath();
File f1 = new File(fileNameWithPath);
mPost.addParameter(elementName, f1);
mPost.addParameter("action", "upload");
mPost.addParameter("ajax", "true");

c.executeMethod(mPost);
mPost.getResponseBodyAsString();
share|improve this answer
I've already tried AWT, but it's really worse than better :-) And the second option. The file uploader I'm using lists the files that you selected and keep state in javascript... It's part of the testing.... It's really damn situation man – Sloin May 25 '11 at 17:30
HtmlUnit has some support for Javascript. I haven't tried it though. And WebDriver supports HtmlUnitDriver. May be you can try it out. – rahul May 25 '11 at 17:39

Just thought I'd provide an FYI to author's original post of using ActiveX. Another workaround would be to integrate with desktop GUI automation tools to do the job. For example, google "Selenium AutoIt". For a more cross-platform solution, consider tools like Sikuli over AutoIt.

This of course, is not considering WebDriver's support for uploads on IE & Firefox via SendKeys, or considering for other browsers where that method doesn't work.

share|improve this answer

After banging my head on this problem for far too many hours, I wanted to share with the community that Firefox 7.0.1 seems to have an issue with the FirefoxDriver sendKeys() implementation noted above (at least I couldn't get it to work on my Windows 7 x64 box), I haven't found a workaround, but updating to Firefox 8.0.1 seems to have fixed the problem. For those of you wondering, it's also possible to use Selenium RC to solve this problem (though you need to account for all of your target operating systems and the native key presses required to interact with their file selection dialogs). Hopefully the issues I had to work around save other people some time, in summary:

https://gist.github.com/1511360

share|improve this answer

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.