11 Essential Selenium Interview Questions *
Toptal sourced essential questions that the best Selenium developers and engineers can answer. Driven from our community, we encourage experts to submit questions and offer feedback.
Hire a Top Selenium Developer NowWhat functions/methods can you use to wait for a page to load, or some element on the page to show up?
To wait for a page to load, explicit wait can be used. Explicit waits stall until some specific condition is met. Although Thread.Sleep() is a form of explicit wait where the thread stalls for a specific duration of time, it may not be the most reliable way to wait for a page to load.
For example, rather than using something like:
Thread.Sleep(30000);
… where the thread sleeps for 30 seconds (30,000 milliseconds), the following can be used:
WebDriverWait wait= new WebDriverWait(webDriver,30);
wait.until(ExpectedConditions.visibilityOf(h1));
… where Selenium waits until the given element is visible on the page, or throws TimeoutException after waiting for 30 seconds.
Page Object Model in Selenium is a design pattern where web pages are represented using classes. Variables in the class can then be used to hold references to elements on the web page, and methods can be used to implement behaviors. This allows an elegant way of implementing test routines that are both readable and easier to maintain and extend in the future.
clickLoginButton();
setCredentials(user_name, user_password);
submitLoginForm();
Page Factory is used to initialize every WebElement variable with a reference to a corresponding element on the actual web page using configured “locators”. Annotations, such as @FindBy, can be used to define strategies for looking up elements, along with the necessary information for identifying them:
@FindBy(how=How.NAME, using="username")
private WebElement user_name;
More about Page Object Model and Page Factory can be found here.
In order to manipulate frame and its content you must switch to it first. This is similar to how you have to switch to a different page before you can interact with it:
driver.switchTo().frame(index);
… where index is the zero-based index of the frame. Switching the frame directs all further interactions through the driver towards the selected frame. The frame method also works with name, element ID and reference to already located elements.
To switch back to the default frame, the defaultContent method can be used:
driver.switchTo().defaultContent();
-
CSS selectors are often easier to read than XPath. Most front-end developers are more likely to be familiar with CSS selectors already.
-
Support for CSS selectors is quite consistent across various modern web browsers, which is not the case with their XPath engines.
-
CSS selectors work faster than XPath.
For various reasons, such as the ones outlined above, Selenium “best practices” advise the use of CSS selectors over XPath.
How do you write a locator to identify paragraph elements that are the immediate child of a div element, or the descendent of a div element?
Immediate child:
An immediate child in XPath is defined indicated using “/”, while on CSS, it is indicated using “>”. For example, with XPath:
//div/p
… and with CSS:
div > p
Descendent:
To find paragraph elements that are descendent to any div element (i.e. the paragraph element appears in the subtree rooted at the div element), we can use “//” in XPath, and just a whitespace in CSS:
//div//p
div p
Briefly explain what the following snippet of Java code does:
WebElement sample = driver.findElement(By.xpath("//*[contains(text(), 'data')]"));
It defines a variable sample of type WebElement, and uses an XPath search to initialize it with a reference to an element that contains the text value “data”.
This can be done by simulating key presses on the focused element. One way is to perform “actions” on the web driver object:
new Actions(webDriver).sendKeys(“some text”).perform();
An alternative way is to switch to the active element first, and send keys to it directly:
webDriver.switchTo().activeElement().sendKeys(“some text”);
Why do we use headless drivers? How can you visually investigate test failure when using headless drivers?
Headless drivers are typically used in continuous integration (CI) setups. Headless drivers, such as PhantomJS, provide all standard web browser functionalities, but run in the command-line. These drivers are based on command-line tools and don’t produce screen output, making them ideal for completely automated setups.
To be able to visually investigate test failures, the developer needs to implement mechanisms to capture screenshots, otherwise rely on command line output.
How are absolute XPaths different from relative XPaths? Why are relative XPaths typically preferred over absolute XPaths in automated tests?
Absolute XPaths, in terms of web pages, start with the root element:
html/head/body/table/tbody/tr/th
Relative XPaths, on the other hand, usually start with “//”:
//table/tbody/tr/th
Even though both these XPaths probably refer to the same element on a certain web page, the former one is more likely to break with any change made to the page. For example, moving the table to inside of a div element will stop the absolute XPath from being able to locate the th element. On the other hand, the relative XPath will still continue to work.
These sample questions are intended as a starting point for your interview process. If you need additional help, explore our hiring resources—or let Toptal find the best developers, designers, marketing experts, product managers, project managers, and finance experts for you.
Submit an interview question
Submitted questions and answers are subject to review and editing, and may or may not be selected for posting, at the sole discretion of Toptal, LLC.
Looking for Selenium Developers?
Looking for Selenium Developers? Check out Toptal’s Selenium developers.
Christina Lin
Christina is a senior QA engineer with expertise in test automation, test management, and manual testing for web and mobile applications. She has created web, iOS, and Android test automation frameworks using Selenium WebDriver and Appium, as well as automating API testing using REST Assured and Postman. With experience in both private and public sectors, Christina has worked with large, medium-size, and small startup companies.
Show MoreDolly Arora
Dolly is a QA engineer with more than 10 years of experience in a range of industries, including real estate, travel, finance, and aviation. She's created multiple testing frameworks from the ground up using Selenium, TestNG, Cucumber, and Cypress and automated QA processes. Dolly manages test execution not only from the technical point of view but also from the customer's, as she believes product usability is as vital as functionality.
Show MoreKalyan Sangaraju
Kalyan is an ISEB- and ISTQB-certified quality assurance engineer with 15 years of experience in manual and automation testing. He is an expert in creating automation frameworks for UI, API, and performance from scratch using Java, Selenium, Cucumber, and Gatling. He is proficient in various types of testing, including functional, regression, and user acceptance testing (UAT). Kalyan's experience in testing extends to client server, web, and cloud applications on Unix and Windows.
Show MoreToptal Connects the Top 3% of Freelance Talent All Over The World.
Join the Toptal community.