Skip to content Skip to sidebar Skip to footer

How Can I Find All Iframe On The Webpage?

I want to know that is there any add-on available in firefox to find all iframe available on webpage.? I want to use it for selenium webdriver automation to switch into iframe.

Solution 1:

Google Chrome

Use Chrome Developer debugging Tool to find all the available iFrames in the web page.

  1. Open chrome web Browser
  2. Press F12 key
  3. Press Esc key
  4. In console, you will see a filter icon followed by the dropdown top frame
  5. Click on the dropdown to see the iFrames availability.

enter image description here

Solution 2:

Thank you for your valuable reply

finally i find answer of my problem.

Web Developer extension is addon for firefox. which have one option "Outline Frames" which highlight all iframes on the webpage

once we found iframes on the page we can get its name/ id / xpath/ css whatever we need in selenium automation using firebug.

thank you :)

enter image description here

Post a Comment for "How Can I Find All Iframe On The Webpage?"