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.
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.
Share Improve this question edited Oct 28, 2013 at 6:07 Masudul 22k5 gold badges45 silver badges60 bronze badges asked Oct 28, 2013 at 6:06 Jasmine.OlivraJasmine.Olivra 1,7719 gold badges24 silver badges37 bronze badges 3-
document.getElementsByTagName('iframe')
? – rab Commented Oct 28, 2013 at 6:10 - that i know that what is the mand to get iframe. but i want to know that is there any firefox addon available which help to show all iframe on the webpage – Jasmine.Olivra Commented Oct 28, 2013 at 6:14
-
Not exactly an add-on, works in any browser, as long as all
iframe
s have the same domain. – Teemu Commented Oct 28, 2013 at 6:22
2 Answers
Reset to default 1Google 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.
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 :)