Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

Navigate And Fetch Title Of All Tabs Using Selenium WebDriver

Posted on 02/19/2025 By admin

This is a frequent interview question asked to all levels of experience in Selenium WebDriver. If you face this question as a beginner then the interviewer wants to check your knowledge of handling multiple windows, switching to windows, and getting the title of a window. But if you face this question as an experienced Selenium professional then you also need to exhibit your knowledge of Stream APIs of Java.

We will see sample code with and without stream usage.

Did you know that I have started a YouTube channel as well and I need your support to make it successful. Please do watch content then comment, like, share, and obviously subscribe.

package General; import java.util.Set; import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WindowType;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test; import io.github.bonigarcia.wdm.WebDriverManager; public class NavigateThroughTabsAndGetTitle { @Test public void navigateThroughTabsAndGetTitle() { // Launching browser WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); // Loading Google - Tab 1 driver.get("https://www.google.com/"); driver.switchTo().newWindow(WindowType.TAB); // Loading Facebook - Tab 2 driver.get("https://www.facebook.com/"); driver.switchTo().newWindow(WindowType.TAB); // Loading GMail - Tab 3 driver.get("https://www.google.com/intl/en-GB/gmail/about/#"); driver.switchTo().newWindow(WindowType.TAB); // Loading Amazon - Tab 4 driver.get("https://www.amazon.com/"); driver.switchTo().newWindow(WindowType.TAB); // Loading Xoom - Tab 5 driver.get("https://www.xoom.com/"); // Get all window handles Set alltabs = driver.getWindowHandles(); // Navigating and getting title without stream APIs for(String tab : alltabs) { String title = driver.switchTo().window(tab).getTitle(); System.out.println(title); } System.out.println("==================================="); // Using stream API alltabs.forEach(tab -> { String title = driver.switchTo().window(tab).getTitle(); System.out.println(title); }); System.out.println("==================================="); // Same as above just stream() is redundant alltabs.stream().forEach(tab -> { String title = driver.switchTo().window(tab).getTitle(); System.out.println(title); }); System.out.println("==================================="); // Quitting driver.quit(); }
}
Google
Facebook – log in or sign up
Gmail - Email from Google
Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more
Send Money Online | Xoom, a PayPal Service
===================================
Google
Facebook – log in or sign up
Gmail - Email from Google
Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more
Send Money Online | Xoom, a PayPal Service
===================================
Google
Facebook – log in or sign up
Gmail - Email from Google
Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more
Send Money Online | Xoom, a PayPal Service
===================================

You can subscribe to my YouTube channel RetargetCommon to learn from video tutorials.

If you have any doubt, feel free to comment below.If you like my posts, please like, comment, share and subscribe.#ThanksForReading

#HappyLearning

Uncategorized

Post navigation

Previous Post: Protractor Tutorial 7 – NPM – Installing a Package Locally & Globally
Next Post: Learn Selenium With Quiz – Basic Level 6 – XPath

Related Posts

Git Tutorial 17 – What Is Head In Git? Uncategorized
ParamsInPostman – Make Selenium Easy Uncategorized
Selenium Framework 5: Understand Keyword Driven Framework in Selenium Uncategorized
June 2, 2018 – Make Selenium Easy Uncategorized
Postman Tutorial Part 30-Extracting and Asserting Request & Response Headers in Postman Uncategorized
REST Assured Tutorial 35 – De-Serialization – JSON Object To Java Object Using Gson API Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark