Skip to content

Instantly share code, notes, and snippets.

@RickCollier
RickCollier / gist:7882645
Created December 9, 2013 22:59
Spring + Selenium webdriver. Couldn't find anything for this and it took me longer than it should have.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<bean id="desiredCapFF" class="org.openqa.selenium.remote.DesiredCapabilities">
<constructor-arg name="browser" value="firefox"/>