It is not possible to get iFrame ID using firefox-firebug.
I want to get that iframe id i go to page source and manually search it from there.
for selenium automation under the controls of iframe
driver.switchTo().frame("");
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If there’s a name or id on the
iframe, Firebug should show it (at least in the DOM tab of the element – rightclick the element and select Inspect in DOM tab). If there’s no name or id, no tool will help you getting it.You should consider selecting the frame via
driver.switchTo().frame(int index)or (my favourite)
driver.switchTo().frame(WebElement frameElement)