---
title: Run Selenium tests with Java in JUnit
description: Cross browser testing with Java and JUnit. Example code to run JUNit
  tests with Selenium and Appium.
source_url:
  html: https://testingbot.com/support/web-automate/selenium/java/junit
  md: https://testingbot.com/support/web-automate/selenium/java/junit/index.md
---
# Set up your first Java test with JUnit

See our [JUnit example repository](https://github.com/testingbot/java-junit-example) for a simple example on how to run JUnit tests in parallel on TestingBot.

Below is a JUnit test example, showing you how to run a JUnit test on TestingBot

    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
    import static org.junit.Assert.assertEquals;
    
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.chrome.ChromeOptions;
    import org.openqa.selenium.remote.RemoteWebDriver;
    
    import java.net.URL;
    import java.time.Duration;
    import java.util.HashMap;
    import java.util.Map;
    
    public class SimpleTest {
    
        private WebDriver driver;
    
        @Before
        public void setUp() throws Exception {
            String key = System.getenv("TESTINGBOT_KEY");
            String secret = System.getenv("TESTINGBOT_SECRET");
            String hubURL = "https://" + key + ":" + secret + "@hub.testingbot.com/wd/hub";
    
            ChromeOptions options = new ChromeOptions();
            options.setPlatformName("WIN11");
            options.setBrowserVersion("latest");
    
            Map<String, Object> tbOptions = new HashMap<>();
            tbOptions.put("name", "My JUnit Test");
            tbOptions.put("build", "build-1");
            options.setCapability("tb:options", tbOptions);
    
            driver = new RemoteWebDriver(new URL(hubURL), options);
            driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(30));
        }
    
        @Test
        public void testSimple() throws Exception {
            driver.get("https://www.google.com");
            assertEquals("Google", driver.getTitle());
        }
    
        @After
        public void tearDown() throws Exception {
            if (driver != null) {
                driver.quit();
            }
        }
    }

## Configuring capabilities

To run your existing tests on TestingBot, your tests will need to be configured to use the TestingBot remote machines. If the test was running on your local machine or network, you can simply change your existing test like this:

**Before:**

    WebDriver driver = new FirefoxDriver();

**After:**

    FirefoxOptions options = new FirefoxOptions();
    WebDriver driver = new RemoteWebDriver(
    	new URL("https://key:secret@hub.testingbot.com/wd/hub"),
    	options
    );

## Specify Browsers & Devices

To let TestingBot know on which browser/platform/device you want to run your test on, you need to specify the browsername, version, OS and other optional options in the capabilities field.

  ![OS selected](https://testingbot.com/assets/environments/svg/windows11-0e1b28bc0fdd5034d3e4d3dc8d346c500a8c6522facf4b45d0da56537c1f1c6d.svg) Windows 11 › ![Browser Selected](https://testingbot.com/assets/environments/svg/chrome-c4081ff447d2d898d4afcb8f074a907c960e6f007716c1a1d119eee6803c4042.svg) Chrome 139 

Loading environments...

Please wait while we load the available browsers and platforms.

    

## Testing Internal Websites

We've built [TestingBot Tunnel](https://testingbot.com/support/tunnel), to provide you with a secure way to run tests against your staged/internal webapps.  
Please see our [TestingBot Tunnel documentation](https://testingbot.com/support/tunnel) for more information about this easy to use tunneling solution.

The example below shows how to easily run a JUnit test with our Tunnel:

1. [Download our tunnel](https://testingbot.com/support/tunnel) and start the tunnel:

    java -jar testingbot-tunnel.jar key secret

2. Adjust your test: instead of pointing to `'hub.testingbot.com/wd/hub'` like the example above - change it to point to your tunnel's IP address.   
 Assuming you run the tunnel on the same machine you run your tests, change to `'localhost:4445/wd/hub'`. localhost is the machine running the tunnel, 4445 is the default port of the tunnel.

This way your test will go securely through the tunnel to TestingBot and back:

    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
    import static org.junit.Assert.assertEquals;
    
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.chrome.ChromeOptions;
    import org.openqa.selenium.remote.RemoteWebDriver;
    
    import java.net.URL;
    import java.time.Duration;
    import java.util.HashMap;
    import java.util.Map;
    
    public class SimpleTest {
    
        private WebDriver driver;
    
        @Before
        public void setUp() throws Exception {
            ChromeOptions options = new ChromeOptions();
            options.setPlatformName("WIN11");
            options.setBrowserVersion("latest");
    
            Map<String, Object> tbOptions = new HashMap<>();
            tbOptions.put("name", "Tunnel Test");
            tbOptions.put("build", "build-1");
            options.setCapability("tb:options", tbOptions);
    
            driver = new RemoteWebDriver(new URL("http://localhost:4445/wd/hub"), options);
            driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(30));
        }
    
        @Test
        public void testSimple() throws Exception {
            driver.get("http://localhost:3000"); // Your internal website
            assertEquals("My App", driver.getTitle());
        }
    
        @After
        public void tearDown() throws Exception {
            if (driver != null) {
                driver.quit();
            }
        }
    }

## Run tests in Parallel

Parallel Testing means running the same test, or multiple tests, simultaneously. This greatly reduces your total testing time.

You can run the same tests on all different browser configurations or run different tests all on the same browser configuration.   
 TestingBot has a large grid of machines and browsers, which means you can use our service to do efficient parallel testing. It is one of the key features we provide to greatly cut down on your total testing time.

Please see our [Parallel JUnit documentation](https://testingbot.com/support/web-automate/selenium/java/parallel-junit) for parallel testing.

### Queuing

Every plan we provide comes with a limit of parallel tests.   
 If you exceed the number of parallel tests assigned to your account, TestingBot will queue the additional tests (for up to 6 minutes) and run the tests as soon as slots become available.

## Mark tests as passed/failed

To mark your test as passed or failed, or to send additional metadata to TestingBot, you can use our [API](https://testingbot.com/support/api).

We provide a [Java client library](https://github.com/testingbot/testingbot-java) to help you interact with the TestingBot API easily.

**Maven:**

    <dependency>
        <groupId>com.testingbot</groupId>
        <artifactId>testingbotrest</artifactId>
        <version>1.0.10</version>
    </dependency>

**Gradle:**

    implementation 'com.testingbot:testingbotrest:1.0.10'

Once integrated into your test suite, you can programmatically update the test status and send metadata such as test name, build ID, or tags to TestingBot.

    import com.testingbot.testingbotrest.TestingbotREST;
    import java.util.HashMap;
    import java.util.Map;
    
    @After
    public void tearDown() throws Exception {
    	TestingbotREST api = new TestingbotREST(System.getenv("TESTINGBOT_KEY"), System.getenv("TESTINGBOT_SECRET"));
    	Map<String, String> data = new HashMap<>();
    	data.put("success", "1");
    	data.put("name", "My Test");
    	api.updateTest(driver.getSessionId().toString(), data);
    	driver.quit();
    }

## Other Java Framework examples

- [JUnit](https://testingbot.com/support/web-automate/selenium/java/junit)

JUnit is a unit testing framework for the Java programming language.

- [Parallel JUnit](https://testingbot.com/support/web-automate/selenium/java/parallel-junit)

By running multiple JUnit tests at the same time you can cut down on overall test time.

- [TestNG](https://testingbot.com/support/web-automate/selenium/java/testng)

TestNG is a framework similar to JUnit and NUnit, which supports some additional commands and features.

- [TestNG + Cucumber](https://testingbot.com/support/web-automate/selenium/java/testng-cucumber)

Run tests with TestNG and BDD Cucumber.

- [Selenide](https://testingbot.com/support/web-automate/selenium/java/selenide)

Selenide is a Java-based test framework that provides a simple and concise API for writing Selenium tests.

### Looking for more help?

Have questions or need more information? Reach out via email or Slack.

[Email us](https://testingbot.com/contact/new)[Slack Join our Slack](https://join.slack.com/t/testingb0t/shared_invite/zt-3bcw9xch-jk19~6XPs_xBrsAgAedkCw)
