我在我的程序中使用了webbrowser控件,但是在导航到某个站点之后,我尝试使用webbrowser的文档(比如getelementbyid ...)获取一些元素,我注意到缺少一些元素。 / p>
我知道元素是通过一些javascript动态插入到页面中的。
我搜索了获取这些元素的方法,我尝试让他们注入一个javascript在页面中执行并通过window.external方法返回一些元素(或者只是通过alert来尝试)但是即使这个脚本被执行了只返回与原始代码中文档上的方法相同的结果。
有一种方法可以通过某种方式访问我程序中的'隐形'元素,就像我在Internet Explorer中按F12访问它们一样? 谢谢你的回答,对不起我的床英语。
这是我的代码:
private void button2_Click(object sender, EventArgs e)
{
//injecting and executing my javascript code
HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = webBrowser1.Document.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
element.text = "function sayHello() { window.external.f1(document.getElementsByTagName('html')[0].innerHTML); }";
head.AppendChild(scriptEl);
webBrowser1.Document.InvokeScript("sayHello");
String v;
System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test.txt");
foreach (HtmlElement k in webBrowser1.Document.GetElementsByTagName("html"))
{
v= k.OuterHtml;
file.WriteLine(v);
}
file.Close();
}
[ComVisible(true)]
public class MyScript {
//function called by the javascript
public void f1(string s)
{
System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test2.txt");
file.WriteLine(s);
file.Close();
}
}
在执行结束时,test和test2都有相同的html,缺少一些元素。
答案 0 :(得分:0)
你应该在你的问题中更具体,并在这里找到你遇到问题的代码。也许您没有访问文档的正确部分