Java Selenium Online Test

TestDome skill assessments are used by more than 11,000 companies and 1,030,000 test takers.

For Jobseekers

Practice your skills and earn a certificate of achievement when you score in the top 25%.

Take a Practice Test

For Companies

Test candidates with real-world problems and interview the best ones.

Sign Up to Offer this Test

About the test

The Java Selenium online test assesses knowledge of automating web browsers using Selenium and Java, through a series of live coding questions focused on building automated tests.

The assessment includes work-sample tasks such as:

  • Automating test cases with Selenium WebDriver.
  • Using selectors to find elements on a web page.
  • Waiting for a page update based on a response from the web page.

A good Java Selenium tester should be able to use Selenium to create robust tests for dynamic web sites.

Sample public questions

Easy
20 min
code
Public
Java Selenium
WebDriver
WebDriver Wait

​A pet wiki wants to add Selenium tests for their website. One thing common to many pages that they want to test is dynamic loading of data, and they want to test if it's fast enough.

Finish the getLoadedData method that accepts a WebDriver instance that has the desired page loaded. The method should click the button with the id "load-button" and wait up to 1 second for the button to become enabled again. If the button gets re-enabled in 1 second, the method should return the content of the paragraph with the id "content" as soon as possible. Otherwise, the method should return null.

For example, if getLoadedData is called with a WebDriver instance with the following page loaded, provided here and below:

<!DOCTYPE html>
<html>
  <head>
    <script>
      function loadData() {
        document.getElementById("load-button").disabled = true;
        setTimeout(() => {
          document.getElementById("content").innerHTML = "The Maltese is a breed of dog in the toy group.";
          document.getElementById("load-button").disabled = false;
        }, 500);
      }
    </script>
  </head>
  <body>
    <p id="content" >
      The Maltese....
    </p>
    <button id="load-button" onclick="loadData()">
      Click here to load additional data.
    </button>
  </body>
</html>

the method should return "The Maltese is a breed of dog in the toy group.".

Easy
3 min
mca
Public
Java Selenium
WebDriver
WebDriver Wait

A dog grooming website recently added a search function to their website.

One of their Selenium tests for the search functionality begins like this:

WebDriver driver = new ChromeDriver(chromeOptions);
driver.manage().timeouts().implicitlyWait(5, java.util.concurrent.TimeUnit.SECONDS);

driver.get(dogGroomingURL);
WebElement searchBox = driver.findElement(By.cssSelector(".searchbox"));
searchBox.sendKeys("paw grooming");

WebElement searchButton = driver.findElement(By.id("searchButton"));
searchButton.click();

WebElement searchResults = driver.findElement(By.id("searchResults"));
String text = searchResults.getText();

What can be concluded about the test?

For jobseekers: get certified

Earn a free certificate by achieving top 25% on the Java Selenium test with public questions.

Take a Certification Test

Sample silver certificate

Sunshine Caprio

Java and SQL
TestDome
Certificate
TestDome logo icon

For companies: premium questions

Buy TestDome to access premium questions that can't be practiced.
Get money back if you find any premium question answered online.

Sign Up to Offer this Test

4 more premium Java Selenium questions

Citrus Conservatory, Programming Courses, Novels Test, Link Url.

Skills and topics tested

  • Java Selenium
  • WebDriver
  • WebDriver Wait
  • Selectors
  • Unit Testing
  • Exceptions

For job roles

  • Quality Assurance Engineer
  • Selenium Test Engineer
  • Web Application Tester

Sample candidate report

What others say

Decorative quote

Simple, straight-forward technical testing

TestDome is simple, provides a reasonable (though not extensive) battery of tests to choose from, and doesn't take the candidate an inordinate amount of time. It also simulates working pressure with the time limits.

Jan Opperman, Grindrod Bank

Product reviews

G2 - Crowd Badge
G2 - High Performer (2022)
Capterra - 4.5 Stars
Capterra - Shortlist (2023)

Used by

Solve all your skill testing needs

150+ Pre-made tests

From web development and database administration to project management and customer support. See all pre-made tests.

90+ skills

From JavaScript and SQL to English and customer support. See all questions to filter by skill.

Multi-skills Test

Mix questions for different skills or even custom questions in one test. See an example.

How TestDome works

1

Choose a pre-made test
or create a custom test

2

Invite candidates via
email, URL, or your ATS

3

Candidates take
a test remotely

4

Sort candidates and
get individual reports

Want to know more?