使用Selenium 2查找嵌套的iFrame

时间:2012-02-03 15:11:35

标签: c# selenium webdriver selenium-webdriver

我正在为遗留应用程序编写测试,其中主文档中有iFrame,然后是其中的另一个iFrame。层次结构是:

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

这是我的代码(我正在使用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"));

问题是,我无法达到第二级iFrame,即contentIFrame

有什么想法吗?

2 个答案:

答案 0 :(得分:20)

我目前正在类似网站上进行测试。 (主文档中嵌套的iframe)

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

您似乎没有使用Api中提供的 frame switching method 。这可能是问题所在。

这就是我正在做的事情,它对我来说很好。

//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"));

答案 1 :(得分:0)

尝试以下代码:

    //Switch to required frame
    driver.SwitchTo().Frame("ContentContainer").SwitchTo().Frame("Content");

    //find and do the action on required elements

    //Then come out of the iFrame
    driver.SwitchTo().DefaultContent();