Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7407189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:40:26+00:00 2026-05-29T05:40:26+00:00

I am writing tests for a legacy application in which there is an iFrame

  • 0

I am writing tests for a legacy application in which there is an iFrame within the main document, and then another iFrame within that. So the hierarchy is:

Html Div (id = tileSpace)
  iFrame (id = ContentContainer)
    iFrame (id = Content)
      Elements

This is my code (I am using C#)

RemoteWebDriver driver = new InternetExplorerDriver();
var tileSpace = driver.FindElement(By.Id("tileSpace"));
var firstIFrame = tileSpace.FindElement(By.Id("ContentContainer"));
var contentIFrame = firstIFrame.FindElement(By.Id("Content"));

The problem is, I am unable to reach the 2nd level iFrame i.e. contentIFrame

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:40:27+00:00Added an answer on May 29, 2026 at 5:40 am

    I’m currently testing on a similar website. (nested iframes inside the main document)

    <div>
        <iframe>
            <iframe><iframe/>
        <iframe/>
    </div>
    

    It seems that you are not using the frame switching method provided in Api. This could be the problem.

    Here is what I’m doing, it works fine for me.

    //make sure it is in the main document right now
    driver.SwitchTo().DefaultContent();
    
    //find the outer frame, and use switch to frame method
    IWebElement containerFrame = driver.FindElement(By.Id("ContentContainer"));
    driver.SwitchTo().Frame(containerFrame);
    
    //you are now in iframe "ContentContainer", then find the nested iframe inside
    IWebElement contentFrame = driver.FindElement(By.Id("Content"));
    driver.SwitchTo().Frame(contentFrame);
    
    //you are now in iframe "Content", then find the elements you want in the nested frame now
    IWebElement foo = driver.FindElement(By.Id("foo"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing tests for a Django application that uses an external data source .
I'm writing a parser for the output of a legacy application, and since there
I'm writing tests using WiPFlash for a WPF application that has been developed in
I'm writing tests for application that is compiled and obfuscated. Currently to access View
I'm writing tests for a business method that invokes some DAO classes to perform
For example, I'm writing tests against a CsvReader. It's a simple class that enumerates
I have a dev, that will get around our code coverage by writing tests
I'm writing some tests in Perl which have a fair amount of set up.
Are there any best practices in writing unit tests when 90% of the time
I am writing tests for a web application. Some commands pull up dialog boxes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.