Since it's been a while since my last Selenium testing tips blog post, I thought it was time to share some Selenium love again. Today we're covering WebDriver's native solution to a very common issue when doing distributed cross browser testing: uploading files in remote servers. As you may know, the way to address this in Selenium 1 is to place your files in an accessible web server and use the attachFile command that points to the correct URL. With Selenium 2, the Selenium Dev team has luckily made this a lot more straightforward. For those of you doing this locally, all you need to do is use the sendKeys command to type the local path of the file in any file field. This works like a charm in all drivers. When moving this test to a remote server (such as, for example, our Selenium 2 Cloud), all you need to do is use the setFileDetector method to let WebDriver know that you're uploading files from your local computer to a remote server instead of just typing a path. Almost magically, the file will be base64 encoded and sent transparently through the JSONWireProtocol for you before writing the fixed remote path. This is an excellent solution, as it lets you switch your tests from a local to remote Driver without having to worry about changing your tests' code. This feature is available in all the official Selenium 2 bindings, just make sure Selenium 2.8.0 or newer is used as this feature has been released then. Here are some examples tests: Java
1import junit.framework.Assert;2import junit.framework.TestCase;3import org.openqa.selenium.*;4import org.openqa.selenium.remote.*;5import java.net.URL;6import java.util.concurrent.TimeUnit;78public class TestingUploadSe2Sauce extends TestCase {9private RemoteWebDriver driver;1011public void setUp() throws Exception {12DesiredCapabilities capabillities = DesiredCapabilities.firefox();13capabillities.setCapability("version", "7");14capabillities.setCapability("platform", Platform.XP);15capabillities.setCapability("selenium-version", "2.18.0");16capabillities.setCapability("name", "Remote File Upload using Selenium 2's FileDetectors");1718driver = new RemoteWebDriver(19new URL("http://<username>:<api-key>@ondemand.saucelabs.com:80/wd/hub"),20capabillities);21driver.setFileDetector(new LocalFileDetector());22driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);23}2425public void testSauce() throws Exception {26driver.get("http://sl-test.herokuapp.com/guinea_pig/file_upload");27WebElement upload = driver.findElement(By.id("myfile"));28upload.sendKeys("/Users/sso/the/local/path/to/darkbulb.jpg");29driver.findElement(By.id("submit")).click();30driver.findElement(By.tagName("img"));31Assert.assertEquals("darkbulb.jpg (image/jpeg)", driver.findElement(By.tagName("p")).getText());32}3334public void tearDown() throws Exception {35driver.quit();36}37}
Ruby
1require 'rubygems'2require "test/unit"3require 'selenium-webdriver'45class ExampleTest < Test::Unit::TestCase6def setup7caps = Selenium::WebDriver::Remote::Capabilities.firefox8caps.version = "5"9caps.platform = :XP10caps[:name] = "Remote File Upload using Selenium 2 with Ruby"11caps['selenium-version'] = "2.18.0"1213@driver = Selenium::WebDriver.for(14:remote,15:url => "http://<username>:<api-key>@saucelabs.com:4444/wd/hub",16:desired_capabilities => caps)1718@driver.file_detector = lambda do |args|19# args => ["/path/to/file"]20str = args.first.to_s21str if File.exist?(str)22end23end2425def test_sauce26@driver.navigate.to "http://sl-test.herokuapp.com/guinea_pig/file_upload"27element = @driver.find_element(:id, 'myfile')28element.send_keys "/Users/sso/SauceLabs/sauce/hostess/maitred/maitred/public/images/darkbulb.jpg"2930@driver.find_element(:id, "submit").click31@driver.find_element(:tag_name, "img")32assert "darkbulb.jpg (image/jpeg)" == @driver.find_element(:tag_name, "p").text33end3435def teardown36@driver.quit37end38end
Pro tip: Write your own FileHandler that will use special codes to represent files before typing paths (locally) or uploading them (remotely). Example: "test-file:small-image"