This repository contains the source code for BrowserStack's Gradle plugin.
This plugin consists of two types of tasks:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.browserstack.gradle:browserstack-gradle-plugin:3.1.0"
}
}
apply plugin: "com.browserstack.gradle"
browserStackConfig {
username = "<browserstack_username>"
accessKey = "<browserstack_access_key>"
configFilePath = '<path/to/your/json/configFile>'
}
{
"devices": [
"Google Pixel-7.1"
],
"deviceLogs": true,
"networkLogs": true,
"project": "Awesome gradle plugin build",
"shards": {
"numberOfShards": 3
}
}
Note: To view the list of all supported parameters for Espresso tests on BrowserStack, visit complete list of API parameters section inside our Espresso Get Started documentation
Builds, uploads and start Espresso tests on BrowserStack AppAutomate.
gradle clean execute${buildVariantName}TestsOnBrowserstack
For running tests on a project with no variants, you can simply run following command for building, uploading and running tests on debug apk:
gradle clean executeDebugTestsOnBrowserstack
And for projects with productFlavors, replace ${buildVariantName} with your build variant name, for example if your productFlavor name is "phone" and you want to test debug build type of this variant then command will be
gradle clean executePhoneDebugTestsOnBrowserstack
For running tests on a project without rebuilding apk and test suite, you can simply run following command for uploading and running tests on debug apk:
gradle executeDebugTestsOnBrowserstack -PskipBuildingApks=true
For specifying a config file from the command line, you can simply run the following command:
gradle clean executeDebugTestsOnBrowserstack --config-file='config-browserstack.json'
Note, this will override the entry within configFilePath.
username: String
accessKey: String
configFilePath: String # Filepath that has capabilities specifed to run the build
Acts as a wrapper around the browserstack CLI and allows the operation of the CLI directly from gradle (Available from version 3.1.0)
gradle browserstackCLIWrapper -Pcommand="browserstack-cli-command-goes-here"
Example usage
gradle browserstackCLIWrapper -Pcommand="app-automate espresso run -a local-path-to-app-apk -t local-path-to-test-suite-apk"
You can refer to the existing browserstack CLI documentation here
Any Browserstack CLI command can directly be passed to the -Pcommand parameter and it would execute the CLI command from gradle and push the output to stdout/terminal
Note: username, accessKey and configFilePath are mandatory parameters. Visit https://www.browserstack.com/app-automate/espresso/get-started to get started with Espresso Tests on BrowserStack and also to know more about the above mentioned parameters.
Note: List of supported devices and be found here (basic auth required). For example :
curl -u "$BROWSERSTACK_USERNAME:$BROWSERSTACK_ACCESS_KEY" https://api-cloud.browserstack.com/app-automate/devices.json
Note: You can also set the values of username and accessKey in environment variables with names BROWSERSTACK_USERNAME and BROWSERSTACK_ACCESS_KEY, respectively. If you do this, then there is no need to set this parameters in browserStackConfig block.
Note: From version 3.1.0 onwards, usage of the Browserstack CLI task will download and install the latest version of Browserstack CLI on your machine.
assemble${buildvariantName}
and assemble${buildvariantName}AndroidTest
tasks.gradle clean upload${buildVariantName}ToBrowserstackAppLive
For running tests on a project with no variants, you can simply run following command for uploading debug apk:
gradle clean uploadDebugToBrowserstackAppLive
And for projects with productFlavors, replace ${buildVariantName} with your build variant name, for example if your productFlavor name is "phone" and you want to upload debug build type of this variant then command will be gradle clean uploadPhoneDebugToBrowserstackAppLive.
username: String
accessKey: String
Note: username and accessKey are mandatory parameters.
assemble${buildvariantName}
.Note: You can also set the values of username and accessKey in environment variables with names BROWSERSTACK_USERNAME and BROWSERSTACK_ACCESS_KEY, respectively. If you do this, then there is no need to set these parameters in browserStackConfig block.
Note: You can also see all possible tasks by running "gradle tasks -all"
Build the plugin
gradle clean build
To install the plugin into local maven repo
mvn install:install-file -Dfile=build/libs/browserstack-gradle-plugin-VERSION.jar -DgroupId=com.browserstack -DartifactId=gradle -Dversion=VERSION -Dpackaging=jar -DgeneratePom=true -DcreateChecksum=true