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.
- Open chrome web Browser
- Press F12 key
- Press Esc key
- In console, you will see a filter icon followed by the dropdown
top frame
- Click on the dropdown to see the iFrames availability.
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 :)
Post a Comment for "How Can I Find All Iframe On The Webpage?"