C#】經過遍歷IFrame訪問頁面元素

最近在作一個小項目,期間須要用到C#去操做IE頁面中的元素,實現自動填寫表單而且提交的功能,想這網上關於這方面的東西確定不少,因而開始在網上找資料。html

在逆心的博客上找到些東西對本身幫助很大,原文連接:http://www.cnblogs.com/kissdodog/p/3725774.htmlshell

 

1.首先添加必須的兩個控件的引用htm

Microsoft Internet Controls
Microsoft HTML Object Libraryblog

 

2.遍歷全部的IE窗口遞歸

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
foreach (InternetExplorer Browser in shellWindows)
{
if (Browser.Document is HTMLDocument && Browser.LocationURL.Contains("ra207.com"))
{
mshtml.IHTMLDocument2 doc2 = (mshtml.IHTMLDocument2)Browser.Document;
//...
}
}element


3.經過DOM操做IE頁面
mshtml.IHTMLElementCollection inputs = (mshtml.IHTMLElementCollection)doc2.all.tags("INPUT");
mshtml.HTMLInputElement input1 = (mshtml.HTMLInputElement)inputs.item("kw1", 0);
input1.value = "test";
mshtml.IHTMLElement element2 = (mshtml.IHTMLElement)inputs.item("su1", 0);
element2.click();input


4.遍歷操做IFrame中的元素博客

很不巧的是原做者也沒有實現直接對IFrame中元素的操做,在網上找了好久也沒有找到相關的文章,沒有辦法,只能本身搞了。it

分析網頁結構,是多層IFrame相互嵌套的複雜結構,而且上層是沒法獲取子層的元素的,真是麻煩~io

後來轉念一想,既然是多層嵌套,那不正好能夠用遞歸來實現麼,遍歷全部的IFrame應該可行,暴力美學~

//遍歷IFrame
public static bool FramesRecursion(ref IHTMLWindow2 frame)
{
IHTMLDocument2 frameDoc = frame.document;
if (null == frameDoc) return false;
if (null == frameDoc.body.innerHTML) return false;

if (frameDoc.body.innerHTML.Contains("肯定交易")) //找到目標
{
FindAndClickTheButton(ref frame); //操做目標
return true;
}
//遍歷該IFrame包含的全部子IFrame
IHTMLFramesCollection2 frames = (IHTMLFramesCollection2)frameDoc.frames;
int len = frames.length;
if (len <= 0) return false;
object i = 0;
object olen = len;
while ((int)i < (int)olen)
{
IHTMLWindow2 frame2 = frames.item(ref i) as IHTMLWindow2;
if (FramesRecursion(ref frame2))
return true;
i = (object)((int)i + 1);
}
return false;
}

最後打包程序的時候須要這兩個庫對應的Dll放在exe同一個目錄下面,不然極可能由於dll版本的不一樣形成不報錯的失敗。---------------------

相關文章
相關標籤/搜索