How to Handle with Multiple Windows,Frames and Iframe in Selenium(with Code) - Day 7

preview_player
Показать описание


In this video, We are going to learn How To Handle Handle with Multiple Windows,Frames and Iframe in Selenium.

✅ API Testing using Postman -

✅ Cypress Tutorial with LIVE Projects -

✅ REST API testing with Python -

✅ Handling Multiple Windows in Selenium
The user scenario being automated here is: Open a new tab and then switch back to the last window to complete the other pending activities. In such scenarios, Selenium helps to handle multiple windows through window handlers and javascript executors.

✅ What is a window handle?
It is a unique identifier that holds the address of all the windows. Think of it as a pointer to a window, which returns the string value. It is assumed that each browser will have a unique window handle. This window handle function helps to retrieve the handles of all windows.

✅ Syntax

switch to: This method helps to switch between the windows
action: This method helps to perform certain actions on the windows
These are some of the methods that will be used to handle multiple windows in Selenium.

🚀 What is 30 Days of Automation in Testing Challenge?

This video is part of 30 Days of Automation in Testing Challenge in Selenium where we will create our own Automation Framework from start.

#seleniumtutorial #thetestingacademy #seleniumframework #seleniumjava
#seleniumforbeginner
Рекомендации по теме
Комментарии
Автор

public void goToMail() {
Set<String> handle1 = driver.getWindowHandles();

Set<String> handle2 = driver.getWindowHandles();
handle2.removeAll(handle1);
Object[] array = handle2.toArray();
array[0]);
} - i use a little bit another way how to switch to - is it ok?

hannasharstniova