WebKitBrowser和Iframe - vb.net

时间:2012-12-10 20:38:06

标签: vb.net iframe webkit browser frames

首先,你需要知道这是我的第一个问题,而且我来自波兰,因为任何错误都是如此。

我正在VB.net中制作程序。 我有网站,而不是我的,还有iframe。在iframe中是文本输入。我需要更改此输入的值。

我在WebBrowser中创建它,但我需要在WebKitBrowser中创建它。 在WebBrowser中,这看起来像:

WebBrowser1.Document.Window.Frames("NameOfFrame").Document.GetElementById("Text_Input").SetAttribute("value", "something") 

在WebKitBrowser中,这不起作用。

我正在尝试这个:

    For Each oneelement As WebKit.DOM.Node In WebKitBrowser1.Document.GetElementById("NameOfFrame").ChildNodes

        MsgBox(oneelement.NodeValue.ToString)
    Next

一个问题.. 我收到了消息:

“你需要iframe支持!”

0 个答案:

没有答案
相关问题