九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
C#中的WebBrowser控件的使用

C#中的WebBrowser控件的使用

關(guān)鍵字:C# WebBrowser

作者:txw1958

原文:http://www.cnblogs.com/txw1958/archive/2012/09/24/CSharp-WebBrowser.html

 

0、常用方法

Navigate(string urlString):瀏覽urlString表示的網(wǎng)址Navigate(System.Uri url):瀏覽url表示的網(wǎng)址Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders): 瀏覽urlString表示的網(wǎng)址,并發(fā)送postData中的消息//(通常我們登錄一個(gè)網(wǎng)站的時(shí)候就會(huì)把用戶名和密碼作為postData發(fā)送出去)GoBack():后退GoForward():前進(jìn)Refresh():刷新Stop():停止GoHome():瀏覽主頁WebBrowser控件的常用屬性:Document:獲取當(dāng)前正在瀏覽的文檔DocumentTitle:獲取當(dāng)前正在瀏覽的網(wǎng)頁標(biāo)題StatusText:獲取當(dāng)前狀態(tài)欄的文本Url:獲取當(dāng)前正在瀏覽的網(wǎng)址的UriReadyState:獲取瀏覽的狀態(tài)WebBrowser控件的常用事件:DocumentTitleChanged,CanGoBackChanged,CanGoForwardChanged,DocumentTitleChanged,ProgressChanged,ProgressChanged

 

1、獲取非input控件的值:

webBrowser1.Document.All["控件ID"].InnerText;或webBrowser1.Document.GetElementById("控件ID").InnerText;或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");


2、獲取input控件的值:

webBrowser1.Document.All["控件ID"].GetAttribute("value");;或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");

 

3、給輸入框賦值:

//輸入框user.InnerText = "myname";password.InnerText = "123456";webBrowser1.Document.GetElementById("password").SetAttribute("value", "Welcome123");

 

4、下拉、復(fù)選、多選:

//下拉框:secret.SetAttribute("value", "question1");  //復(fù)選框rememberme.SetAttribute("Checked", "True");//多選框cookietime.SetAttribute("checked", "checked");


5、根據(jù)已知有ID的元素操作沒有ID的元素:

HtmlElement btnDelete = webBrowser1.Document.GetElementById(passengerId).Parent.Parent.Parent.Parent.FirstChild.FirstChild.Children[1].FirstChild.FirstChild;

根據(jù)Parent,FirstChild,Children[1]數(shù)組,多少層級(jí)的元素都能找到。

 

6、獲取Div或其他元素的樣式:

webBrowser1.Document.GetElementById("addDiv").Style;

 

7、直接執(zhí)行頁面中的腳本函數(shù),帶動(dòng)態(tài)參數(shù)或不帶參數(shù)都行:

Object[] objArray = new Object[1];objArray[0] = (Object)this.labFlightNumber.Text;webBrowser1.Document.InvokeScript("ticketbook", objArray);webBrowser1.Document.InvokeScript("return false");

 

8、自動(dòng)點(diǎn)擊、自動(dòng)提交:

HtmlElement btnAdd = doc.GetElementById("addDiv").FirstChild;btnAdd.InvokeMember("Click");

 

9、自動(dòng)賦值,然后點(diǎn)擊提交按鈕的時(shí)候如果出現(xiàn)腳本錯(cuò)誤或一直加載的問題,一般都是點(diǎn)擊事件執(zhí)行過快,這時(shí)需要借助Timer控件延遲執(zhí)行提交按鈕事件:

this.timer1.Enabled = true;this.timer1.Interval = 1000 * 2;private void timer1_Tick(object sender, EventArgs e){    this.timer1.Enabled = false;    ClickBtn.InvokeMember("Click");//執(zhí)行按扭操作}

 
10、屏蔽腳本錯(cuò)誤:

將WebBrowser控件ScriptErrorsSuppressed設(shè)置為True即可

 
11、自動(dòng)點(diǎn)擊彈出提示框:

private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e){  //自動(dòng)點(diǎn)擊彈出確認(rèn)或彈出提示  IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;  vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //彈出確認(rèn)  vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//彈出提示}

 WebBrowser頁面加載完畢之后,在頁面中進(jìn)行一些自動(dòng)化操作的時(shí)候彈出框的自動(dòng)點(diǎn)擊(屏蔽)

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e){    //自動(dòng)點(diǎn)擊彈出確認(rèn)或彈出提示    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;    vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //彈出確認(rèn)    vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//彈出提示    //下面是你的執(zhí)行操作代碼}

 

12、獲取網(wǎng)頁中的Iframe,并設(shè)置Iframe的src

HtmlDocument docFrame = webBrowser1.Document.Window.Frames["mainFrame"].Document; 或HtmlDocument docFrame = webBrowser1.Document.All.Frames["mainFrame"].Document; docFrame.All["mainFrame"].SetAttribute("src", "http://www.baidu.com/");

 

13、網(wǎng)頁中存在Iframe的時(shí)候webBrowser1.Url和webBrowser1_DocumentCompleted中的e.Url不一樣,前者是主框架的Url,后者是當(dāng)前活動(dòng)框口的Url。


14、讓控件聚焦

this.webBrowser1.Select();this.webBrowser1.Focus();doc.All["TPL_password_1"].Focus();

 
15、打開本地網(wǎng)頁文件

webBrowser1.Navigate(Application.StartupPath + @"\Test.html");

 

16、獲取元素、表單

//根據(jù)Name獲取元素public HtmlElement GetElement_Name(WebBrowser wb,string Name){    HtmlElement e = wb.Document.All[Name];    return e;}//根據(jù)Id獲取元素public HtmlElement GetElement_Id(WebBrowser wb, string id){    HtmlElement e = wb.Document.GetElementById(id);    return e;}//根據(jù)Index獲取元素public HtmlElement GetElement_Index(WebBrowser wb,int index){    HtmlElement e = wb.Document.All[index];    return e;}//獲取form表單名name,返回表單public HtmlElement GetElement_Form(WebBrowser wb,string form_name){    HtmlElement e = wb.Document.Forms[form_name];    return e;}//設(shè)置元素value屬性的值public void Write_value(HtmlElement e,string value){    e.SetAttribute("value", value);}//執(zhí)行元素的方法,如:click,submit(需Form表單名)等public void Btn_click(HtmlElement e,string s){    e.InvokeMember(s);}
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
delphi WebBrowser的使用方法詳解(四)
C#模擬網(wǎng)站登陸_C#builder_積木群組
WebBrowser控件的window.close 問題
引用 js在IE和FF的區(qū)別 - Neil的日志 - 網(wǎng)易博客
C# WebBrowser強(qiáng)制使新窗口網(wǎng)頁只在WebBrowser打開
VB關(guān)于webbrowser相關(guān)操作大全
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服