Skip to main content

How to Work With Frames in Selenium Web Drivers

An iFrame is a another HTML document embedded inside the HTML document on a Website. The content inside the iFrame generally come from another source . The content may be an Advertisement. iFrame behave like  a inline image so it have its own independent scrollbar from the whole web page. A Web designer can change the content of iframe without reload the whole web page. A web page may have many iFrame. a iFrame can be inside of another iFrame.


In Selenium Web Driver we have 3 way to handle Frames.
1) driver.switchTo().frame(int arg0)
2) driver.switchTo().frame(String argo)
3) driver.switchTo().frame(WebElement frameElement)

1) driver.switchTo().frame(int arg0): 
By using this user can select the particular frame by using Index value. The frame count start with "0" if there are more then 1 frame.
Once selenium switch to the frame then the focus of Selenium Web driver will change to Frame
First you can get the total counts of the frame in any web page. Selenium have the method to do it




here you can see that number of frame found = 5. Now suppose you want to switch to the  Frame 1 which have Index 0 so below is the code.



Now you have control over frame 1. This method is useful only when there is one frame because frame position can be changed.

2) driver.switchTo().frame(String argo):
Here Selenium Web driver will select frame by using Id or Name. 
See below Image
Automation Testing, Selenium Web Drivers, Working with Frames




If there is Name and Id is not provided for any iFrame then  this method will not work. For this user need to use 3rd Method.

3) driver.switchTo().frame(WebElement frameElement):
In this method Selenium Web Driver will locate iframe by using previous select WebElement.
See Below Image
Automation Testing, Selenium Web driver, Working With Frame, WebElement





If user want to switch back to the main window then use defaultContent() function
below is the code
 

Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.