Check our public questions below
Solve questions to get feedback or
take a practice test and get a free certificate.
Check our public questions below
Solve questions to get feedback or
take a practice test and get a free certificate.
Screen with work-sample questions
Work-samples are the best predictor of work performance. 8,000+ companies use TestDome premium questions.
The Java Selenium online test assesses candidates' knowledge of using Selenium in the Java programming language for testing web applications.
It's an ideal test for pre-employment screening. A good Java Selenium tester should be able to use Selenium to create robust tests for dynamic web sites.
This test requires candidates to solve coding problems and to answer questions about using Selenium in Java.
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?
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.".
Earn a free certificate by achieving top 25% on the Java Selenium test with public questions.
Take a Certification TestSunshine Caprio
Java and SQL
TestDome
Certificate
Buy TestDome to access premium questions that can't be practiced.
Get money back if you find any premium question answered online.
Citrus Conservatory, Programming Courses, Novels Test, Link Url.
From web development and database administration to project management and customer support. See all pre-made tests.
From JavaScript and SQL to English and customer support. See all questions to filter by skill.
Mix questions for different skills or even custom questions in one test. See an example.
Choose a pre-made test
or create a custom test
Invite candidates via
email, URL or your ATS
Candidates take
a test remotely
Sort candidates and
get individual reports