This project contains a Gradle plugin that downloads WebDriver binaries specific to the operating system the build runs on. The plugin also as configures various parts of the build to use the downloaded binaries.
For installation instructions please see this plugin's page on Gradle Plugin Portal.
This plugin exposes the following optional properties through the extension named webdriverBinaries
:
Name | Type | Description |
---|---|---|
chromedriver |
String |
The exact version of ChromeDriver binary to be used by the project. No ChromeDriver binary will be downloaded if this property is not specified. |
geckodriver |
String |
The exact version of GeckoDriver binary to be used by the project. No GeckoDriver binary will be downloaded if this property is not specified. |
edgedriver |
String |
The exact version of EdgeDriver binary to be used by the project. No EdgeDriver binary will be downloaded if this property is not specified. |
downloadRoot |
File |
The location into which the binaries should be downloaded. If not specified the binaries are downloaded into the Gradle user home directory. Should not be specified under normal circumstances to benefit from caching of the binaries between multiple project builds. |
driverUrlsConfiguration |
org.gradle.api.resources.TextResource |
The text resource which contains mapping from a binary version to a URL. If not specified then the default is to use WebDriver Extensions Maven Plugin's package.json file from https://raw.githubusercontent.com/webdriverextensions/webdriverextensions-maven-plugin-repository/master/repository-3.0.json . |
fallbackTo32Bit |
boolean |
Whether or not to fallback to a 32bit version of drivers if a 64bit version is not found. Defaults to false . |
Example usage:
webdriverBinaries {
chromedriver '2.32'
geckodriver '0.19.0'
edgedriver '86.0.601.0'
}
Additionally to properties which can be used for specifying driver binaries versions, the plugin exposes chromedriver()
, geckodriver()
, and edgedriver()
configuration methods through the the extension named webdriverBinaries
.
Each method takes a closure which delegates to an object with the following properties:
Name | Type | Description |
---|---|---|
version |
String | The exact version of binary to be used by the project. No binary will be downloaded if neither this nor versionRegexp property is specified. |
versionRegexp |
String | The regular expression for the version - the highest matching version of binary will be used by the project. No binary will be downloaded if neither this nor version property is specified. |
architecture |
String | The architecture of the binary to be used. The allowed values are X86 , X86_64 and ARM64 . Defaults to the architecture of the OS running the build. |
fallbackTo32Bit |
boolean |
Whether or not to fallback to a 32bit version of the driver if a 64bit version is not found. Defaults to false . |
Example usage:
webdriverBinaries {
chromedriver {
version = '2.32'
architecture = 'X86'
}
geckodriver {
version = '0.19.0'
architecture = 'X86'
}
edgedriver {
version = '86.0.601.0'
architecture = 'X86'
fallbackTo32Bit = true
}
}
Example usage which shows how to configure the plugin to use the latest version of chromedriver:
webdriverBinaries {
chromedriver {
versionRegexp = '.*'
}
}
By default the plugin configures all org.gradle.api.tasks.testing.Test
tasks with locations of the downloaded binaries via system properties but additional tasks can also be configured as along as they implement org.gradle.process.JavaForkOptions
- org.gradle.api.tasks.JavaExec
is an example of such task.
Example usage:
task exec(type: JavaExec) {
...
}
webdriverBinaries {
configureTask(exec)
}
This plugin adds the following tasks to the project:
configureChromeDriverBinary
- downloads, caches and configures the build to use a ChromeDriver binaryconfigureGeckoDriverBinary
- downloads, caches and configures the build to use a GeckoDriver binaryconfigureEdgeDriverBinary
- downloads, caches and configures the build to use a EdgeDriver binary
There is no need to call the above tasks directly because the plugin interweaves them into the build lifecycle by configuring all org.gradle.api.tasks.testing.Test
tasks to depend on them.
Note that a configure task for a given driver binary is skipped unless a version of the binary for that particular driver is specified using one of the properties of webdriverBinaries
extension.
When a configuration task is executed it modifies configuration of system properties for all org.gradle.api.tasks.testing.Test
tasks in the project so that the location of the WebDriver binary location is picked up when the driver is being initialized.
That is, it adds a system property with a name specific to the given driver and a value being the path to the downloaded binary.
By default, the plugin uses information from WebDriver Extensions Maven Plugin's package.json
file to determine what URL should a given binary be downloaded from.
If a version of a binary you would like to download using the plugin is not listed in the aforementioned file you can do one of the following:
- provide a pull request to WebDriver Extensions Maven Plugin Repository 3.0 which adds the version in question to the file - the URL you add will be visible to the plugin as soon as the PR gets merged
- author an own version of the
package.json
file and configure the plugin to use it
If you'd like to use the latter then after authoring your own version of package.json
and dropping it, for example, in the root directory of your build you need to configure the plugin to use it:
webdriverBinaries {
driverUrlsConfiguration = resources.text.fromFile('package.json')
}
Note that the driverUrlsConfiguration
property is a org.gradle.api.resources.TextResource
and can be configured with a text resource from various sources - see javadoc for org.gradle.api.resources.TextResourceFactory
for more examples.
If Idea configuration extensions plugin is applied to the project together with this plugin it will do the following:
- configure the
ideaWorkspace
task added to the build by Gradle's built-in IDEA plugin to depend onconfigureChromeDriverBinary
andconfigureGeckoDriverBinary
tasks - add system properties specific for the drivers, setting the path to the downloaded binaries as their values, to default default JUnit run configuration in IntelliJ when the configuration tasks are executed
The above will ensure that locations of driver binaries are picked up when running tests from IntelliJ.
The project is setup to work with IntelliJ IDEA, simply import it using the native IntelliJ IDEA import for Gradle projects.
If you import the project into IntelliJ as described above then you can run integration tests even after changing the code without having to perform any manual steps. They are configured to run in an environment matching the one used when running them using Gradle on the command line.
The project contains some code verification tasks aside from tests so if you wish to run a build matching the one on CI then execute ./gradlew check
.