iFrames
An inline frame is used to embed another document within the current HTML document. It means iframe is actually a webpage within the webpage which have its own DOM for every iframe on the page.
the HTML source code of the webpage that has an iframe will look like the below code.
In the above html snapshot there is an iframe embed into an another iframe. And We have to select the outer Iframe to go to inner Iframe and write in the body.
Next We have to come out from the inner iframe to outer iframe and click on OK button
Directly accessing the above elements is not possibe iframes has its own DOM elements and we have to switch to that particular frame and then perform any actions.
Selects the frame 1
driver.switchTo().frame("frame1");
Selects the frame2
driver.switchTo().frame("frame2");
Switching back to the parent window
driver.switchTo().defaultContent(); // you are now outside both frames
There might be situations like, we might not be able to get the iframe values. At that time we can get name by using tagName method.
driver.switchTo().frame(driver.findElements(By.tagName("iframe").get(0));
So, you can actually select an iFrame using the below metthods,
- frame(index)
- frame(Name of Frame [or] Id of the frame
- frame(WebElement frameElement)
- defaultContent()
Let's have a look at this iframes in the w3schools web page to learn interactively
So, you can tryhere
In the above image if you look at the html source we have 2 iframes defined
In the Firebug source code, you will see 3 frames shown
1. <iframe id="viewIFRAME">
2.<iframe src = "http://www.w3schools.com">
3. <iframe src="http://www.assertselenium.com">
It shows 3 iframes though we have defined only 2 because, the right hand viewer side itself is a made up of frame and inside which we have 2 iframes defined.
If you look, while mouse hovering on <iframe id="viewIFRAME">
the whole right hand side area is highlighted, which shows that its an iframe.
If you look, while mouse hovering on <iframe src = "http://www.w3schools.com">
the w3schools iframe is highlighted
If you look, while mouse hovering on [sourcecode language="html"]<iframe src = "http://www.assertselenium.com">[/sourcecode] the assertselenium iframe is highlighted
Suppose if you view the same page in a 3D view you can actually see that these 3 iframes itself will be of separate individual boxes, representing that its a iframe and has its own DOM
A special, In 3d View for you
So,that's pretty much about iFrames and I hope it helps you..!!!
Thanks for posting these. Really helpfull…
Yes, Thanks!!!!!
Yep that was helpful thanks!
Thanks for this post.
It’s a lot of help.
Great! Thank you!
Greetings from Switzerland
Could you please tell me what is differance between frame and iframe?
Hi All,
I am working on Dynamic CRM where the iframes will changing dynamically. There is no src to use the above code. Can anyone suggest on this.
After driver.switchto().frame(id)
executing “sendkeys %xyz” is typing “xyz” into the input box() and not “%xyz” as expected.
How to handle special characters?
A wonderful job. Super helpful initmraofon.
Richish
You can do this one by using actions.
Really helpful! Thanks a lot.