To be able to access, from Console, elements in an iframe:
1. get id of iframe -
document.getElementsByTagName('iframe')
2. use the cd() command -
cd(document.getElementById('id_of_iframe').contentWindow)
3. now we can access elements in the iframe as usual using document.getElementById() etc
No comments:
Post a Comment