How To Handle NoSuchWindowException In Selenium

Vipul Gupta

Posted On: June 6, 2023

view count93688 Views

Read time21 Min Read

In today’s digital landscape, websites are brimming with dynamic content, captivating users with interactive experiences. A notable feature is the frequent emergence of new windows and tabs triggered by specific actions taken by users. These dynamic elements play a vital role in enhancing user engagement and providing seamless navigation.

As an automation tester, encountering scenarios where multiple windows or tabs need to be handled within an end-to-end flow is a common occurrence. Successfully managing this dynamic behavior becomes essential to ensure the accuracy and reliability of your automated tests.

However, this becomes highly challenging as automated tests tend to fail and make your test scripts less reliable. Your automation testing script should be able to manage many windows for better testing. In such situations, switching focus to perform any action on the necessary window or tab becomes an unsaid requirement.

Selenium offers various methods to work with multiple windows. But any slightest mistake, like using an invalid window handle, switching to a closed window, etc., can lead to NoSuchWindowException in the automation script. We will discuss more about these in the next sections.

NoSuchWindowException occurs when the WebDriver tries to interact with a window that is not available at that moment. This could be due to a closed window or the window in focus being different.

In this Selenium Java tutorial, we will discuss how to handle NoSuchWindowException in Selenium. We will discuss the most common reasons for the same and the best practices to handle it. The practical implementation of these practices using Selenium Java will help you to learn how to handle NoSuchWindowException in your automation scripts to make tests run smoothly and reliably. If you are preparing for an interview you can learn more through Selenium interview questions.

So, Let’s get started.

What is a window and window handle?

In Selenium, a window refers to a graphical user interface (GUI) window or a web browser window/tab, in particular while working with web automation. When Selenium WebDriver launches a web browser, it opens a new window in which the webpage gets loaded.

Each window is represented by a unique ID called a window handle. It allows the WebDriver to interact with the window and its elements. These handles are also used to switch between different windows, manipulate the size and position of the window, and perform other actions on the window and its contents.

If you have multiple browser windows open, you can use this method to retrieve a set of all the window handles. In this blog, Selenium with Java language has been used for demonstration and to provide code samples.

To get the current window handle:

To switch to a specific window by passing in its handle:

To switch to the main window back:

To understand these methods better, consider the following test scenario.

We want to reach the Twitter page and click on the Login button. This button is available on the page loaded in a new window. This new window, Window2 is loaded by clicking the Follow button on the previous/main window, Window1.

window-popup-modal

Now, if we want the test scenario to pass, the driver focus must be switched first to Window2 once it is loaded. If you try to switch driver focus before the load is completed, it will raise a NoSuchWindowException.

What is a NoSuchWindowException in Selenium?

NoSuchWindowException is one of the most frequently encountered exceptions in Selenium WebDriver while working with multiple windows/tabs. The NoSuchWindowException is raised when the WebDriver cannot find the desired browser window or tab that it needs to interact with.

This exception would occur if there are multiple open windows and WebDriver is looking for one with incorrect window handles. Another reason could be that the required window is closed already and is no longer available.

The NoSuchWindowException can also occur if there is a problem with the browser itself, like it has crashed due to some previous actions or has become unresponsive.

An important thing to note here is that handling multiple frames in Selenium is slightly different than handling multiple windows in Selenium. As for frames, the methods provided to switch are different, and similarly, the expectation raised in case a frame is not found is NoSuchFrameException.

You can follow the LambdaTest YouTube Channel and stay updated with the latest tutorials around Selenium testing, Cypress testing, CI/CD, and more.

Reasons for NoSuchWindowException in Selenium

This exception can occur for many reasons while working with multiple windows. A few of the most common ones are.

  • Closure of window
  • This is the most common of all reasons leading to NoSuchWindowException in Selenium. The required window might get closed before the desired action is performed.

    This could occur due to some error in the flow of the automation script or any other exception that could lead to a terminated window.

  • Driver focuses on another window
  • Selenium WebDriver focus could get shifted to another window as a part of the automation flow. In this case, if we try to interact with the previous window again, NoSuchWindowException in Selenium is raised.

    This is because, according to Selenium, only the window currently in focus is present. It cannot interact with any other window directly, and we need to switch to it before performing any action.

  • Invalid window handle
  • Window handles, as mentioned in the earlier section, are used to identify various windows and switch between them uniquely. You can fetch these handle values for the current window or all the open windows at any given moment using getWindowHandle() or getWindowHandles(), respectively. These handle values are AlphaNumeric string values like window-ISERZ1M69HCDVY7KRFXS.

    If the window handle passed is invalid or non-existent, then no associated window will be found, and Selenium will throw a NoSuchWindowException.

  • Window load timing issue
  • Occasionally, there are instances where Selenium WebDriver faces difficulty locating a new window until it has finished loading completely. This situation can arise from variations in code execution and disparities in window loading times, leading to potential challenges in synchronizing test actions with the window’s availability.

    If the automation script tries to interact before that without waiting for the window load to complete, NoSuchWindowException is thrown from the WebDriver.

    WebDriver

    For instance, the above code immediately attempts to switch to the new window without waiting for it to fully load after clicking the button.

    selenium-grid

    Based on the provided screenshot, if the new window displayed is not yet fully loaded, it could potentially result in a NoSuchWindowException in Selenium being raised.

Demonstration: How to fix NoSuchWindowException in Selenium?

To demonstrate the best practices for handling NoSuchWindowException in Selenium, we will create a Java project with Maven and TestNG framework using Selenium 4.

Test Scenario – 1 (Demonstrate NoSuchWindowException)

  1. Navigate to https://www.lambdatest.com/selenium-playground/window-popup-modal-demo.
  2. Click Follow on Twitter.
  3. Get a list of all window handles and print them on the console.
  4. Try to switch to the new window using an invalid window handle.
  5. Verify NoSuchWindowException is raised.

Test Scenario – 2 (Handle NoSuchWindowException using Try-Catch)

  1. Navigate to https://www.lambdatest.com/selenium-playground/window-popup-modal-demo
  2. Click Follow on Twitter.
  3. Get a list of all window handles and print them on the console.
  4. Start the try block.
  5. Try to switch to the new window using an invalid window handle.
  6. Verify NoSuchWindowException is raised and caught inside the catch block.

Test Scenario – 3 (Handle NoSuchWindowException using Explicit Wait)

  1. Navigate to https://www.lambdatest.com/selenium-playground/window-popup-modal-demo
  2. Click Follow on Twitter.
  3. Add Explicit Wait using Expected Conditions to wait until the number of windows is 2.
  4. Fetch a list of all window handles and store them in a variable.
  5. Start a loop to switch to each window using the window handle one by one.
  6. Switch to the new window using the window handle.
  7. Check if this is the required window by verifying its title.
  8. If it is a match, break the loop. If not, repeat Steps 6 and 7 till the required window is found.
  9. Click on the Login button on the new window.

This blog uses the Eclipse IDE for demonstration purposes, but feel free to use any IDE of your preference. The implementation process remains identical until the creation of a Maven project, regardless of the IDE you choose.

As we are working with Selenium web automation, we would start by adding Selenium dependency along with TestNG, which will be used for test execution to the pom.xml of the project.

After the project is created and dependencies are added, the final pom.xml would be like the one below.

Next, add a new Java test file TestNoSuchWindowException.java under src.test package. Once added the project structure would look like this.

TestNoSuchWindowException

We will add our test cases to this to see how to prevent NoSuchWindowException from occurring in our Selenium automation scripts.

In this blog, we will harness the power of a Selenium cloud grid like LambdaTest to perform Selenium Java testing. LambdaTest is a digital experience testing cloud that exponentially increases your browser coverage by running your Java automation testing scripts with Selenium on a cloud of 3000+ desktop and mobile environments.

After adding all the WebDriver configurations and test case examples to demonstrate the fix for NoSuchWindowException, the completed file should look like the below:

github

CodeWalkthrough

Step 1. We start by creating an instance of RemoteWebDriver as we will execute the code on the cloud Selenium Grid.

RemoteWebDriver

Step 2. Navigate to the LambdaTest Profile section once you create your account to fetch the username and access key. These will be used to make a connection to their cloud grid.

LambdaTest Profile

You can also configure the username and access key as environment variables using the following commands and directly fetch them in code.

For macOS and Linux:

For Windows:

We can also fetch the required browser capabilities to use the LambdaTest platform by navigating to their Automation Capabilities Generator. This helps by offering ready-to-use code for setting up browser capabilities that can be used in execution.

Automation Capabilities Generator

Step 3. Create a base method and name it as setup() and annotate with @BeforeTest annotation in TestNG. This method will be used for driver setup and opening the webpage before each test.

annotation in TestNG

In this blog, we have used Selenium 4, which supports SafariOptions class. In this function, an object of the same is created to define browser properties like browser version, OS version, etc. It also accepts the variables required for LambdaTest execution as a capability.

These variables are used to set values like build, name, or any other browser property, which will help to identify the run on the LambdaTest Dashboard or modify behavior.

LambdaTest Dashboard

Step 4. Finally, an instance of RemoteWebDriver is created to connect to the LambdaTest Cloud grid using the safariOptions, and your Lambdatest username and the access key.

RemoteWebDriver is connect to the LambdaTest Cloud

Step 5. Finally, navigate to the sample website under test, which will have a new window open on clicking a button.

navigate to the sample website

Step 6. Add a method as tearDown() and annotate it with @AfterTest annotation. This will be used to close the session after each test case.

 tearDown() @AfterTest annotation

Test Scenario: NoSuchWindowException in Selenium

Step 1. Add the first test case and name it as testNoSuchWindowException(). In this test, we try to simulate the NoSuchWindowException in Selenium by using an invalid window handle.

testNoSuchWindowException()

Step 2. We start by clicking the Follow button, which will open a new window.

open a new window

For this, we use the driver.findElement() method in Selenium and use XPath as a web element locator.

driver.findElement() method in Selenium

Step 3. Next, fetch the list of all window handles using driver.getWindowHandles() and store them in a variable. This traverses through the window handles list and prints valid handle values.

window handles using driver.getWindowHandles()

Step 4. Lastly, our attempt to switch to the newly opened window involves passing an invalid window handle. For this, the valid handle value from the previous step is manipulated to demonstrate the exception.

invalid window handle

Step 5. On executing this, you can observe that the test case fails with NoSuchWindowException in Selenium as the window handle passed is invalid, and Selenium cannot locate a window using the same.

test case fails with NoSuchWindowException

In the following sections, we will see the implementation of some of the best practices to prevent this NoSuchWindowException in Selenium from happening.

Fixing NoSuchWindowException in Selenium using Try-Catch

As discussed in the best practices sections, one of the most used ways to handle NoSuchWindowException in Selenium is using the try-catch block.

Step 1. For this, add another test case to the Java file and name it testNoSuchWindowException_fix_tryCatch().

testNoSuchWindowException_fix_tryCatch()

Step 2. Click the Follow button, which is expected to open a new window.

follow button new window

Step 3. In this approach, code that would lead to an exception on switching to a new window, like the previous scenario, is used.

The only difference is that we place this code inside the try block. This will help to catch the exception and prevent abrupt behavior from the automation script.

exception on switching to a new window

Step 4. This is followed by a catch block. This helps to catch the exception if it occurs and perform any subsequent actions. It also helps to terminate the code gracefully in such cases.

catch block

Step 5. Executing the above code, you will get the following output. In this, you can see that NoSuchWindowException is raised but is handled gracefully inside the catch block.

output. In this, you can see that <em>NoSuchWindowException</em> is raised but is handled gracefully inside the catch block” width=”1542″ height=”856″ class=”alignnone size-full wp-image-48844″ /></p>
<p>But it is very important to note that even if the exception is handled, you cannot perform any action on the new window. This is because the exception was raised, which means either the window handle is incorrect or the window does not exist. </p>
<p>You can always add a retry in such a case to try again the previous action, which should launch the window or check if the handle is correct and try to switch again.</p>
<h3>Fixing NoSuchWindowException in Selenium using Window Handles and Waits</h3>
<p><strong>Step 1.</strong> Next, add a new test case and name it <em>testNoSuchWindowException_fix()</em>. We will use this to demonstrate how using Waits and Window Handles properly helps us to prevent <em>NoSuchWindowException</em> from happening.</p>
<p><img src=

But it is very important to note that even if the exception is handled, you cannot perform any action on the new window. This is because the exception was raised, which means either the window handle is incorrect or the window does not exist.

You can always add a retry in such a case to try again the previous action, which should launch the window or check if the handle is correct and try to switch again.

Fixing NoSuchWindowException in Selenium using Window Handles and Waits

Step 1. Next, add a new test case and name it testNoSuchWindowException_fix(). We will use this to demonstrate how using Waits and Window Handles properly helps us to prevent NoSuchWindowException from happening.

Window Handles and Waits

Step 2. We start by clicking on the button, which is expected to open a new window.

click on the follow button

Step 3. As we click on the button, the expectation here is that now the total number of windows should be 2 like below.

twitter turn on notifications

To handle the exception, we use explicit waits in Selenium to wait until the number of windows is equal to 2 and then move forward with the flow.

Step 4: For this, create an object of WebDriverWait class and pass the driver object and the duration for which we want to wait for the maximum time.

object of WebDriverWait class

Using this object with the until() function, we add an ExpectedConditions to wait for the number of windows to be 2. The driver waits for a maximum of 5 seconds for this condition to happen.

add an ExpectedConditions to wait

If the number of windows is validated, we move forward else the driver throws an error to show that condition is not fulfilled.

Step 5. Next, fetch the window handle for all the open windows. We will be storing this in a Set.

window handle for all open windows

Step 6. We will traverse through this list of handles and switch to each window one by one until the required window is found.

ist of handles and switch to each window

Step 7. To check if the current window is required or not, we check by matching the title of the required window with the current window. If it’s a match, break the loop and continue. If not, switch to the next window using the handle and continue the same flow.

matching the title of the required window

Step 8. When the required window is found in WebDriver focus, click on the login button, and the success message is printed.

WebDriver focus

Executing the above test case, we get an output like the one below.

2 windows are present using waits

From the output screenshot, you can see that we had successfully verified that 2 windows are present using waits. Then we switch driver focus to the required new window and can successfully click on the Login button without encountering an exception.

Best practices to handle NoSuchWindowException in Selenium

From the demonstration section, it is quite clear that NoSuchWindowException in Selenium can be easily handled in your automation script by following some of the best practices.

Let us have a look at these in a bit more detail.

  • Using explicit waits
  • When working with multi-window functionalities, you are already aware if a new window is added as a result of the last action. This information, combined with explicit waits, helps you to wait for the new window to be open before you perform any action on it.

    This can be done by using the ExpectedConditions class. It contains a collection of predefined conditions that can be used in explicit waits. It tells the WebDriver to explicitly wait for the given amount of time unless a certain given condition is met before moving to the next step.

    In this case, it is done by checking the total number of windows using the numberOfWindowsToBe() condition. The below code will make the WebDriver wait for 10 seconds until the number of windows is equal to 1 before throwing an exception.

    Using explicit waits

  • Using valid window handles
  • It is most important that we have a valid window handle to switch to the target window to perform the required action and avoid NoSuchWindowException in Selenium. For this, use the following method to get a list of window handles of all the open windows.

    Additionally, with this, you can check the window title or some other attribute to judge which is the required window to be switched to. This will prevent unnecessary switches to all the available windows before reaching the required one.

    Using valid window handles

  • Switching to the correct window
  • Another practice to prevent NoSuchWindowException in Selenium is to validate if you have switched to the correct required window once all the window handles are available.

    One way of doing this is to switch to all the windows one by one. Do this until the title of that window matches the required window title.

    Switching to the correct window

  • Using a try-catch block
  • You can also wrap your window handling code inside a try-catch block. By doing this, you can catch the NoSuchWindowException in Selenium if it occurs and then continue with the next steps as required and prevent abrupt behavior from the automation script.

    Using a try-catch block

    The next steps in this case, as per your requirements, could be to log an error message that the window is not found and mark the test as failed. Or you can also implement a retry and try to relaunch the new window by performing the previous action, which was expected to open the new window.

  • Keeping track of window handles
  • Another important practice is to keep track of the window handles list. This is a must-do whenever a window is opened or closed. You can do the same by using the getWindowHandles() method repeatedly.

    This is a highly recommended practice whenever you want to switch to a new window. It helps to remove the handles of old closed windows and update the list with new ones. This helps to lessen the chances of exception.

Conclusion

In conclusion, NoSuchWindowException is a common exception in Selenium that can occur when working with multiple windows or tabs. However, with the right knowledge of best practices to handle the same, we can make automation tests run smoothly and reliably. In this blog, we discussed the common reasons that can lead to NoSuchWindowException in Selenium. We also learned the best practices to handle the same and did some hands-on practice on how to add these approaches to your automation scripts. So, now it is for you to get started and, with a little attention to the powers of Selenium, prevent NoSuchWindowException in your scripts.

Frequently Asked Questions (FAQs)

How to solve the TimeOut exception in Selenium?

Timeout exceptions in Selenium occur when the WebDriver cannot operate within the specified time limit. This can happen when elements take too long to load, AJAX requests are delayed, or the page is unresponsive. To solve a timeout exception in Selenium, you can try the following approaches:

  • Increase the Timeout
  • Implicit Waits
  • Verify Page Load
  • Check Network Performance
  • Reduce Implicit Waits
  • Optimize Element Locators
  • Handle StaleElementReferenceException.

By applying these techniques, you can handle timeout exceptions in Selenium and improve the stability and reliability of your test scripts.

How to fix no such alert exception in Selenium?

The “NoSuchAlertException” in Selenium occurs when the WebDriver tries to interact with an alert box that does not exist or has not been displayed. This exception is thrown when there is no alert present in the current context. To fix the “NoSuchAlertException” in Selenium, you can consider the following approaches:

  • Handle Expected Alerts
  • Switch to Alert
  • Verify Alert Existence
  • Wait for Alert to Disappear.

By applying these techniques, you can handle the “NoSuchAlertException” in Selenium and interact with alerts more reliably.

Author Profile Author Profile Author Profile

Author’s Profile

Vipul Gupta

Vipul Gupta is a passionate Quality Engineer with 6+ years of experience and keen interest in automation testing of Web and API based applications. He is having experience in designing and maintaining various automation frameworks. Currently working as Sr. SDET, he enjoys reading and learning about new test practices and frameworks.

Blogs: 17



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free