Selenium 4 FAQs

Advanced Topics — Published November 3, 2020
selenium 4 faqs

I led a very engaging webinar session where I explored some of the upcoming features of Selenium 4 including relative locators, window management, and Chrome DevTool Protocol (CDP) APIs.

In fact, there were so many questions that I didn’t have time to answer them all live. Therefore, I’ve gone through and chosen the most frequently asked questions and have provided the answers below.

Relative Locators

Selenium 4 offers a new locator type called Relative Locators, which allows you to identify elements in relation to other elements: such as find the element to the left of another element. Likewise, you can also find elements to the right, above, below, and near.

  1. How close above, to the left, … does the element have to be in order to be discovered?

    The elements must be greater than 0 pixels apart to be considered relatives. As shown here, sometimes elements appear to have different x and y coordinates, however, they can be overlapped in the DOM. In cases like these – where the x and/or y coordinates of two elements are the same – the elements are not detected as relative to each other.

  1. I’m struggling to see why we’d use Relative Locators when the web is supposed to be responsive. This clearly breaks with responsive design. Why not just use IDs or other reliable locators?

    You’re correct. If you are going to test your application in various viewport sizes, then Relative Locators is not a great idea. As you can see here, our test immediately breaks when the application is placed in the dimensions of an iPhone because the positioning of the elements change.



    My advice is to use Relative Locators sparingly, and even then, always think ahead about how reliable it will be for your given test requirements.

    I also strongly recommend you limit its use to interaction and not verification. If you need to verify the visual aspects of your application, visual testing is a proven, reliable approach to do so.

  1. Does the element have to be in view to be able to use relative locators such as “is below”?

    The element does not have to be in view, but it does have to be present in the DOM. Under the covers, Selenium is calling the JavaScript function getBoundingClientRect() which will look within the DOM, not on the screen, for the element.

  2. How is the relative locator different from xpath axes such as preceding-sibling?

    Xpath axes use the DOM hierarchy to locate elements. Relative locators use x and y coordinates. So with relative locators, the elements do not need to be siblings.

  3. Can we extract a list of elements with relative locators?

    Yes, to find a list of elements that match a relative locator, use findElements.

Window and Tab Management

Opening a brand new window or tab in Selenium 3 wasn’t very intuitive as there was no built-in method to do this. Selenium 4 provides built-in support to create a new tab or window within the same driver session.

  1. Does the getWindowHandles() method still return all window handles, even for tabs?

    Yes, you still call getWindowHandles() and it works for multiple windows as well as multiple tabs.

  1. Does the new window/tab use the same cookie store as the original, or a different cookie store?

    The new window/tab uses a new cookie store. I tested this by opening an initial window with Selenium, adding a cookie, then opening a new tab. I checked the cookies in both tabs, and the new cookie was only in the first tab.

Selenium Chrome DevTools APIs

Chrome DevTools Protocol (CDP) is a set of tools that enables you to access and control Chromium-based browsers via Chrome DevTools. Selenium 4 provides an API that is essentially a wrapper around the raw CDP commands, which makes it much easier to control the browser from within our test code.

  1. Do the Selenium Chrome DevTools APIs work in other browsers like Firefox or just the Chrome browser?

    Selenium Chrome DevTools APIs work in any Chromium-based browser. In fact, Selenium 4 introduces a new driver called ChromiumDriver. ChromeDriver and EdgeDriver are subclasses of ChromiumDriver. All of the CDP implementation is done in the ChromiumDriver and is inherited in ChromeDriver and EdgeDriver.

    Since Firefox is not a Chromium-based browser, the Selenium 4 CDP APIs are not available in the FirefoxDriver.

  1. Can we read the responses of the http requests that happen while the user interacts with the page?

    Yep, you sure can! In fact, anything that you can do in Chrome DevTools, you can now do in Selenium 4!

    However, I do not advise attempting to use Selenium for API testing, as there are better tools designed for this purpose. But you can use it for interesting scenarios such as intercepting network requests, as demonstrated by Adi Ohana. This can be done using the new getDevTools() method available in ChromiumDriver (and its subclasses such as ChromeDriver and EdgeDriver).

  1. When mocking geolocation, how do we get the latitude and longitude values to use in the Selenium call?

    Great question! I use Google Maps to look up the location, and then get the longitude and latitude that way. You can see a full example from start to finish of mocking geolocations with Selenium 4. Specifically, step 3 shows how to capture the coordinates.

    pasted image 0

  1. Is it possible to handle different time zones with Selenium 4?

    Yes, you can now spoof the timezone in Chrome DevTools, which means you can also do it in Selenium 4 by using the provided Selenium 4 API, setTimezoneOverride.

  1. Can we modify the headers using Selenium Chrome DevTools APIs?

    Yes, you can use CDP to send additional headers, via the setExtraHTTPHeaders command.

    For example, if I wanted to send a header named referrer and a value of angie, I could do so like this:

When will Selenium 4 Be Released?

Ah yes, that’s the most frequently asked question ? With such rich features, we’re all waiting to be able to officially use Selenium 4. While you can install Selenium 4’s alpha version now to play around with it, no release date has been set.

I do encourage you to try Selenium 4 now to see how you will be able to utilize features such as relative locators, window/tab management, and the Chrome DevTools APIs to improve your testing.

Are you ready?

Get started Schedule a demo