C#获取IE窗口和简单操作

首先需要导入 C:\WINDOWS\System32\mshtml.tlbInterop.SHDocVw.dll两个动态库文件
 

/// <summary>
/// 返回指定Url的IE窗口下的 IHTMLDocument2 对象。
/// </summary>
/// <returns>IHTMLDocument2</returns>
public static IHTMLDocument2 GetIHTMLDocument2ByUrl(string url)
{
    SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
    foreach (SHDocVw.InternetExplorer ie in shellWindows)
    {
       string filename = System.IO.Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
       if (filename.Equals("iexplore") && ie.LocationURL == url)
       {
           return ie.Document as IHTMLDocument2;
       }
    }
}


  通过 GetIHTMLDocument2ByUrl 方法可以获取已打开的IE窗口中指写地址的窗口中的 IHTMLDocument2 对象。

  利用这个对象,就可以进行相关操作。

1.填写表单

IHTMLDocument2 iHTMLDocument2 = GetIHTMLDocument2ByUrl("http://www.163.com");
IHTMLInputElement input = (IHTMLInputElement)iHTMLDocument2.all.item("Username", 0); // 获取指定名称的对象
input.value = "Xiao"; // 赋值

2.点击按钮

IHTMLDocument2 iHTMLDocument2 = GetIHTMLDocument2ByUrl("http://www.163.com");
HTMLDocumentClass obj = (HTMLDocumentClass)iHTMLDocument2;
IHTMLElement iHTMLElement = null;
IHTMLElementCollection c = obj.getElementsByTagName("input");
foreach (IHTMLElement e in c)
{
    if (e.outerHTML.IndexOf("登录") != -1)
    {
         iHTMLElement = e;
         break;
    }
}
if (iHTMLElement != null)
{
    iHTMLElement.click(); // 点击登录按钮
}


更多功能可以参考 IHTMLDocument2 对象。

加支付宝好友偷能量挖...


评论(0)网络
阅读(583)喜欢(0)Asp.Net/C#/WCF