Selenium WebDriver with Jenkins Selenium WebDriver with Jenkins jenkins jenkins

Selenium WebDriver with Jenkins


Are there any plugins to installed on Jenkins?

-No, you do not need these plugins.

This is what I am using to instantiated my driver, do I have to use RemoteDriver?

I think you need RemoteDriver for executing your test, and you need add initialization for this RemoteDriver in GetDriver() function.

May be you help this link and this

My Config:

firefox {    capability = DesiredCapabilities.firefox()    capability.setPlatform(Platform.LINUX)    driver = {new RemoteWebDriver(new URL("http://some.domain:4444/wd/hub"), capability)}}

So I use Geb for testing, but I think there is no difference.