Skip to main content

Test Observability on JUnit5

Quick start guide to integrate BrowserStack Test Observability with JUnit5

Prerequisites

  • You have a JUnit5 (v5 or higher) test suite.
  • Maven is installed on your machine, its environment variables are set, and its bin is added to system path, $PATH.
  • You may run your tests on BrowserStack Automate or even on any other cloud provider or even locally.
  • Your tests can be unit / integration / functional or of any nature.

Integrate with Test Observability

You can use BrowserStack Test Observability both when you’re using BrowserStack’s devices and browsers to run your functional end-to-end tests and also if you’re running tests locally on your laptop/CI system or even when you’re using some other cloud provider.

Not only that, Test Observability is agnostic to the type of testing and hence you could also integrate it with your unit or integration test suite written using JUnit5.

Please select your setup below to get started with an awesome debugging experience with Test Observability:

To start using BrowserStack Test Observability with your existing setup of JUnit5 tests running on BrowserStack Automate, you’d need to integrate with browserstack-java-sdk (if not already done). Follow one of the methods below to integrate the SDK and start using Test Observability:

If you’re an existing browserstack-java-sdk user, you can skip the steps below. However, ensure that you’ve specified static names (names should not change across build runs) for projectName and buildName in the browserstack.yml file in your project. Also, restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

Install BrowserStack plugin

On the Eclipse toolbar, click Help > Eclipse Marketplace. In the Eclipse Marketplace, search for BrowserStack > click Install > Finish.

Search for Browserstack plugin

Configure your test suite with BrowserStack SDK

BrowserStack plugin automatically adds the browserstack-java-sdk dependency to your pom.xml file and generates a browserstack.yml configuration file.

Right-click on your project folder > BrowserStack > select Integrate with Automate SDK.

Eclipse Configuration

Select your Project Folder, Framework, and other BrowserStack Parameters, and then click Integrate.

Eclipse Configuration

Update browserstack.yml file

Update the browserstack.yml file in the root folder of your test suite.

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Run your test suite

Run your tests as usual.

View results and insights on Test Observability dashboards

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information.

Install BrowserStack plugin

Click IntelliJ IDEA > Preferences > Plugins. Search for BrowserStack and click Install.

Intellij IDEA Configuration

Configure your test suite with BrowserStack SDK

BrowserStack plugin automatically adds the browserstack-java-sdk dependency to your pom.xml file and generates a browserstack.yml configuration file.

Right-click on your project folder > BrowserStack > select Integrate with Automate SDK.

Intellij IDEA Configuration

Select your Project Folder, Framework, and other BrowserStack Parameters, and then click Integrate.

Intellij IDEA Configuration

Update browserstack.yml file

Update the browserstack.yml file in the root folder of your test suite.

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Run your test suite

Run your tests as usual.

View results and insights on Test Observability dashboards

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information right on this dashboard.

Set BrowserStack credentials

Copy icon Copy snippet
Copy icon Copy snippet

Saving your BrowserStack credentials as environment variables makes it easier to run your test suite from your local or CI environment.

Install BrowserStack SDK using Maven Archetype

Copy icon Copy snippet
Copy icon Copy snippet

Maven Archetype provides a template to quickly configure your project. Copy & run the adjacent command on your terminal/command prompt to add browserstack-java-sdk dependency in your pom.xml and browserstack.yml config file in your project.

Make changes in your browserstack.yml config file

Once you have installed the SDK, a browserstack.yml config file will be created at the root level of your project. This file holds all the required capabilities to run tests on BrowserStack.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Make sure you copy the contents of the below config file and set it in your project’s browserstack.yml file:

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

Run your test suite with Test Observability

Copy icon Copy snippet

Run the adjacent command from the project’s root directory to run your test suite with BrowserStack.

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information.

Verify your pom.xml entries

As you’re an existing browserstack-java-sdk user, you must already have the following entry in your pom.xml file of your project. Please verify that the following exists:

pom.xml
Copy icon Copy snippet

Install the latest SDK version

The previous step outlines that your pom.xml must have the LATEST tag against the browserstack-java-sdk. Now, run the below command to ensure that the latest version is installed:

Terminal
Copy icon Copy snippet


Ensure that you have browserstack-java-sdk version 1.12.3 or higher.

Verify your browserStack.yml config file

As you’re an existing browserstack-java-sdk user, you must already be having a browserstack.yml config file at the root level of your project.

Test Observability mandatorily needs the following four configurations in the file. You need not change anything but you have to ensure that the values of the buildName and projectName variables are not changing across different build runs.

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

Run your test suite with Test Observability

Copy icon Copy snippet

Run the following command from the project’s root directory to run your test suite with BrowserStack.

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information right on this dashboard.

To start using BrowserStack Test Observability with your existing setup of JUnit5 tests running on your local laptop or CI or even on any other cloud provider, you’d need to integrate the browserstack-java-sdk. Follow one of the methods below to integrate the SDK and start using Test Observability:

BrowserStack Test Observability works with any kind of automation tests. Use it with your unit or integration test suites and also your end-to-end functional test suite.

Install BrowserStack plugin

On the Eclipse toolbar, click Help > Eclipse Marketplace. In the Eclipse Marketplace, search for BrowserStack > click Install > Finish.

Search for Browserstack plugin

Configure your test suite with BrowserStack SDK

BrowserStack plugin automatically adds the browserstack-java-sdk dependency to your pom.xml file and generates a browserstack.yml configuration file.

Right-click on your project folder > BrowserStack > select Integrate with Automate SDK.

Eclipse Configuration

Select your Project Folder, Framework, and other BrowserStack Parameters, and then click Integrate.

Eclipse Configuration

Update browserstack.yml file

Update the browserstack.yml file in the root folder of your test suite.

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Run your test suite

Run your tests as usual.

View results and insights on Test Observability dashboards

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information.

Install BrowserStack plugin

Click IntelliJ IDEA > Preferences > Plugins. Search for BrowserStack and click Install.

Intellij IDEA Configuration

Configure your test suite with BrowserStack SDK

BrowserStack plugin automatically adds the browserstack-java-sdk dependency to your pom.xml file and generates a browserstack.yml configuration file.

Right-click on your project folder > BrowserStack > select Integrate with Automate SDK.

Intellij IDEA Configuration

Select your Project Folder, Framework, and other BrowserStack Parameters, and then click Integrate.

Intellij IDEA Configuration

Update browserstack.yml file

Update the browserstack.yml file in the root folder of your test suite.

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Run your test suite

Run your tests as usual.

View results and insights on Test Observability dashboards

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information.

Set BrowserStack credentials

Copy icon Copy snippet
Copy icon Copy snippet

Saving your BrowserStack credentials as environment variables makes it easier to run your test suite from your local or CI environment.

Install BrowserStack SDK using Maven Archetype

Copy icon Copy snippet
Copy icon Copy snippet

Maven Archetype provides a template to quickly configure your project. Copy & run the following command on your terminal/command prompt to add browserstack-java-sdk dependency in your pom.xml and browserstack.yml config file in your project.

Make changes in your browserstack.yml config file

Once you have installed the SDK, a browserstack.yml config file will be created at the root level of your project. This file holds all the required capabilities to run tests on BrowserStack.

BrowserStack SDK is a very powerful tool that you can use to set the different browser/device combinations and parallelization. For more details, check out the Automate Integration guide.

Make sure you copy the contents of the below config file and set it in your project’s browserstack.yml file:

browserstack.yml
Copy icon Copy snippet

The projectName and buildName config must be static and not change across different runs of the same build. This is a deviation in approach as specified by BrowserStack Automate or App Automate as Test Observability will automatically identify different build runs.

Restrict the characters in your projectName and buildName to alphanumeric characters (A-Z, a-z, 0-9), underscores (_), colons (:), and hyphens (-). Any other character will be replaced with a space.

Run your test suite with Test Observability

Copy icon Copy snippet

Run the following command from the project’s root directory to run your test suite with BrowserStack.

Post build run completion, you’ll be able to see the build run report along with all necessary debugging information.

Visit Test Observability

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback

Is this page helping you?

Yes
No

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback!

Talk to an Expert
Download Copy