Reputation: 1771
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.
Upvotes: 1
Views: 21388
Reputation: 21129
Use Chrome Developer debugging Tool to find all the available iFrames in the web page.
top frame
Upvotes: 1
Reputation: 1771
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 :)
Upvotes: 0