Internet Explorer自动化:在多个框架下访问元素

问题描述

我正在开发一个自动化程序,该程序可以在Internet Explorer中打开一个Intranet网站,输入数据并提交信息。

然而,该网站使用了多个“ iframe”和“ frames”,即在顶层“ iframe”下,将存在另一个“ iframe”,在内部将是另一个具有按钮和文本框的“ frame”。 / p>

Top level iframe
  --control 1
  --control 2
  ....
  Second iframe
    ....
    Third iframe
    --control 1
    --control 2

我能够访问顶级“ iframe”下的控件,但是我的代码无法识别第二个“ iframe”及以后的元素。

我该怎么做?

下面是我的代码(frmMain是顶层iframe,modelframe1和modalframe2是第二个和第三个)

Set doc = ie.Document

Set iframeDoc = doc.frames("frmMain").Document

Set objCollection = iframeDoc.getElementsByTagName("input")
objCount = 0
While objCount < objCollection.Length
    Debug.Print objCollection(objCount).Name
    If objCollection(objCount).Type = "submit" And objCollection(objCount).Name = "abc_name" Then 
        Set objElement = objCollection(objCount)
        objElement.Click
    End If
    objCount = objCount + 1
Wend 

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)