I'm using Cucumber with JUnit as a front end to drive my tests and Selenium as a back end to interact with a browser.
For the most part I access Selenium by using the web driver. The code looks something like:
WebDriver driver = WebDriverFactory.getDriver();
driver.findElement()....
For most of my testing this is OK, However there are some method on the com.thoughtworks.selenium.Selenium Object that I'd also like to use. What I can't seem to find is a suitable getter that returns this Object. Any idea how this is supposed to be done?