微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决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 举报,一经查实,本站将立刻删除。