日韩精品亚洲精品中文字幕乱伦AV|曰韩区二区三区日韩中文字幕五码|ady99久久人人看人人摸人人|动漫一区二区黄99精品视频在线|AV片在线观看亚洲中文国产精品|伦乱在线VA欧美性爱一二区|亚洲无码mv91热色视频|激情六月综合欧美精品中文

當(dāng)前位置:首頁 > 軟件開放 > 正文內(nèi)容

css3按鈕代碼(html按鈕css)

軟件開放11個(gè)月前 (02-26)411

概述

Selenium是一款免費(fèi)的分布式的自動化測試工具,支持多種開發(fā)語言,無論是C、 java、ruby、python、或是C# ,你都可以通過selenium完成自動化測試。本文以一個(gè)簡單的小例子,簡述C# 利用Selenium進(jìn)行瀏覽器的模擬操作,僅供學(xué)習(xí)分享使用,如有不足之處,還請指正。

涉及知識點(diǎn)

要實(shí)現(xiàn)本例的功能,除了要掌握Html ,Java,CSS等基礎(chǔ)知識,還涉及以下知識點(diǎn):

log4net:主要用于日志的記錄和存儲,本例采用log4net進(jìn)行日志記錄,便于過程跟蹤和問題排查,關(guān)于log4net的配置和介紹,之前已有說明,本文不做贅述。

Queue:隊(duì)列,先進(jìn)先出模式,本文主要用于將日志信息保存于隊(duì)列中,然后再顯示到頁面上,其中Enqueue用于添加內(nèi)容到結(jié)尾處,Dequeue用于返回并移除一個(gè)位置的對象。

IWebDriver:瀏覽器驅(qū)動接口,所有的關(guān)于瀏覽器的操作都可以通過此接口進(jìn)行,不同瀏覽器有不同的實(shí)現(xiàn)類,如:IE瀏覽器(InternetExplorerDriver)Chrome瀏覽器(ChromeDriver)等。

BackgroundWorker:后臺工作線程,區(qū)別于主線程,通過事件觸發(fā)不同的狀態(tài)。

本例開發(fā)工具為VS2019,通過NuGet進(jìn)行需要的軟件包的安裝與管理,如下所示:

示例效果圖

本例采用Chrome瀏覽器,用于監(jiān)控某一個(gè)網(wǎng)站并獲取相應(yīng)內(nèi)容,如下所示:

展開全文

Selenium示例介紹

定義一個(gè)webDriver,如下所示:

通過ID獲取元素并填充內(nèi)容和觸發(fā)事件,如下所示:

通過XPath獲取元素,如下所示:

核心代碼

主要的核心代碼,就是瀏覽器的元素定位查找和事件觸發(fā),如下所示:

namespaceAiSmoking.Core{publicclassSmoking{///summary///是否正在運(yùn)行 ////summaryprivateboolrunning = false;

///summary///驅(qū)動 ////summaryprivateIWebDriver driver = null;

///summary///# 無貨 ////summaryprivatestringno_stock = "Currently Out of Stock";

///summary///# 線程等待秒數(shù) ////summaryprivateintwait_sec = 2;

privateDictionary string, string cfg_info;

privatestringwork_path = string.Empty;

///summary///構(gòu)造函數(shù) ////summarypublicSmoking( ) {

}

///summary///帶參構(gòu)造函數(shù) ////summary///param name="cfg_info"/param///param name="work_path"/parampublicSmoking( Dictionary string, string cfg_info, stringwork_path ) {this.cfg_info = cfg_info; this.work_path = work_path; this.wait_sec = int.Parse(cfg_info[ "wait_sec"]); //# 如果小于2,則等于2this.wait_sec = ( this.wait_sec 2? 2: this.wait_sec); this.wait_sec = this.wait_sec * 1000; }

///summary///開始跑 ////summarypublicvoidstartRun( ) {//"""運(yùn)行起來"""try{this.running = true; stringurl = this.cfg_info[ "url"]; stringusername = this.cfg_info[ "username"]; stringpassword = this.cfg_info[ "password"]; stringitem_id = this.cfg_info[ "item_id"]; if( string.IsNullOrEmpty(url) || string.IsNullOrEmpty(username) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(item_id)) {LogHelper.put( "配置信息不全,請檢查config.cfg文件是否為空,然后再重啟"); return; }if( this.driver == null) {stringexplorer = this.cfg_info[ "explorer"]; if(explorer == "Chrome") {//谷歌瀏覽器ChromeOptions options = newChromeOptions; this.driver = newChromeDriver(options); }else{//默認(rèn)IEvaroptions = newInternetExplorerOptions; //options.AddAdditionalCapability.('encoding=UTF-8')//options.add_argument('Accept= text / css, * / *')//options.add_argument('Accept - Language= zh - Hans - CN, zh - Hans;q = 0.5')//options.add_argument('Accept - Encoding= gzip, deflate')//options.add_argument('user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko')//# 2. 定義瀏覽器驅(qū)動對象this.driver = newInternetExplorerDriver(options); }}this.run(url, username, password, item_id); }catch(Exception e) {LogHelper.put( "運(yùn)行過程中出錯(cuò),請重新打開再試"+e.StackTrace); }}

///summary///運(yùn)行 ////summary///param name="url"/param///param name="username"/param///param name="password"/param///param name="item_id"/paramprivatevoidrun( stringurl, stringusername, stringpassword, stringitem_id ) {//"""運(yùn)行起來"""http://# 3. 訪問網(wǎng)站this.driver.Navigate.GoToUrl(url); //# 4. 最大化窗口this.driver.Manage.Window.Maximize; if( this.checkIsExists(By.LinkText( "賬戶登錄"))) {//# 判斷是否登錄:未登錄this.login(username, password); }if( this.checkIsExists(By.PartialLinkText( "歡迎回來"))) {//# 判斷是否登錄:已登錄LogHelper.put( "登錄成功,下一步開始工作了"); this.working(item_id); }else{LogHelper.put( "登錄失敗,請?jiān)O(shè)置賬號密碼"); }}

///summary///停止運(yùn)行 ////summarypublicvoidstopRun( ) {//"""停止"""try{this.running = false; //# 如果驅(qū)動不為空,則關(guān)閉//self.close_browser_nicely(self.__driver)if( this.driver != null) {this.driver.Quit; //# 關(guān)閉后切要為None,否則啟動報(bào)錯(cuò)this.driver = null; }}catch(Exception e) {//print('Stop Failure')}finally{this.driver = null; }}

privatevoidlogin( stringusername, stringpassword ) {//# 5. 點(diǎn)擊鏈接跳轉(zhuǎn)到登錄頁面this.driver.FindElement(By.LinkText( "賬戶登錄")).Click; //# 6. 輸入賬號密碼//# 判斷是否加載完成if( this.checkIsExists(By.Id( "email"))) {this.driver.FindElement(By.Id( "email")).SendKeys(username); this.driver.FindElement(By.Id( "password")).SendKeys(password); //# 7. 點(diǎn)擊登錄按鈕this.driver.FindElement(By.Id( "sign-in")).Click; }}

///summary///工作狀態(tài) ////summary///param name="item_id"/paramprivatevoidworking( stringitem_id ) {while( this.running) {try{//# 正常獲取信息if( this.checkIsExists(By.Id( "string"))) {this.driver.FindElement(By.Id( "string")).Clear; this.driver.FindElement(By.Id( "string")).SendKeys(item_id); this.driver.FindElement(By.Id( "string")).SendKeys(Keys.Enter); }//# 判斷是否查詢到商品stringxpath = "http://div[@class=\"specialty-header search\"]/div[@class=\"specialty-deion\"]/div[@class=\"gt-450\"]/span[2] "; if( this.checkIsExists(By.XPath(xpath))) {intcount = int.Parse( this.driver.FindElement(By.XPath(xpath)).Text); if(count 1) {Thread.Sleep( this.wait_sec); LogHelper.put( "沒有查詢到item id ="+ item_id + "對應(yīng)的信息"); continue; }}else{Thread.Sleep( this.wait_sec); LogHelper.put( "沒有查詢到item id2 ="+ item_id + "對應(yīng)的信息"); continue; }//# 判斷當(dāng)前庫存是否有貨

stringxpath1 = "http://div[@class=\"product-list\"]/div[@class=\"product\"]/div[@class=\"price-and-detail\"]/div[@class=\"price\"]/span[@class=\"noStock\"]"; if( this.checkIsExists(By.XPath(xpath1))) {stringtxt = this.driver.FindElement(By.XPath(xpath1)).Text; if(txt == this.no_stock) {//# 當(dāng)前無貨Thread.Sleep( this.wait_sec); LogHelper.put( "查詢一次"+ item_id + ",無貨"); continue; }}//# 鏈接path1stringxpath2 = "http://div[@class=\"product-list\"]/div[@class=\"product\"]/div[@class=\"imgDiv\"]/a"; //# 判斷是否加載完畢//# this.waiting((By.CLASS_NAME, "imgDiv"))if( this.checkIsExists(By.XPath(xpath2))) {this.driver.FindElement(By.XPath(xpath2)).Click; Thread.Sleep( this.wait_sec); //# 加入購物車if( this.checkIsExists(By.ClassName( "add-to-cart"))) {this.driver.FindElement(By.ClassName( "add-to-cart")).Click; LogHelper.put( "加入購物車成功,商品item-id:"+ item_id); break; }else{LogHelper.put( "未找到加入購物車按鈕"); }}else{LogHelper.put( "沒有查詢到,可能是商品編碼不對,或者已下架"); }Thread.Sleep( this.wait_sec); }catch(Exception e) {Thread.Sleep( this.wait_sec); LogHelper.put(e);}}}

///summary///判斷是否存在 ////summary///param name="by"/param///returns/returnsprivateboolcheckIsExists( By by) {try{inti = 0; while( this.running i 3) {if( this.driver.FindElements( by).Count 0) {break; }else{Thread.Sleep( this.wait_sec); i = i + 1; }}returnthis.driver.FindElements( by).Count 0; }catch(Exception e) {LogHelper.put(e);returnfalse; }}

}}

關(guān)于日志幫助類,代碼如下:

備注

行路難·其一

【作者】李白 【朝代】唐

金樽清酒斗十千,玉盤珍羞直萬錢。

停杯投箸不能食,拔劍四顧心茫然。

css3按鈕代碼(html按鈕css)

欲渡黃河冰塞川,將登太行雪滿山。

閑來垂釣碧溪上,忽復(fù)乘舟夢日邊。

行路難,行路難,多歧路,今安在?

長風(fēng)破浪會有時(shí),直掛云帆濟(jì)滄海。

作者:Alan.hsiang

出處:http://www.cnblogs.com/hsiang/

版權(quán)聲明:本文來源于網(wǎng)友收集或網(wǎng)友供稿,僅供學(xué)習(xí)交流之用,如果有侵權(quán),請轉(zhuǎn)告小編或者留言,本公眾號立即刪除。

支持小薇

福利 :

關(guān)注公眾號: DotNet開發(fā)跳槽 ?

覺得不錯(cuò),請點(diǎn)個(gè)在看 呀

掃描二維碼推送至手機(jī)訪問。

版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。

本文鏈接:http://www.atlasseeker.com/post/91774.html

標(biāo)簽: css3按鈕代碼

“css3按鈕代碼(html按鈕css)” 的相關(guān)文章

網(wǎng)站建設(shè)方案(網(wǎng)站建設(shè)方案書范文)

網(wǎng)站建設(shè)方案(網(wǎng)站建設(shè)方案書范文)

本篇文章給大家談?wù)劸W(wǎng)站建設(shè)方案,以及網(wǎng)站建設(shè)方案書范文對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、網(wǎng)站建設(shè)的方案包括有哪些內(nèi)容? 2、網(wǎng)站建設(shè)方案都包括什么? 3、網(wǎng)站建設(shè)規(guī)劃書 4、網(wǎng)站建設(shè)方案需要考慮到哪些方面? 5、企業(yè)網(wǎng)站建設(shè)規(guī)劃方案怎么寫?...

快遞軟件開發(fā)(快遞軟件開發(fā)公司)

快遞軟件開發(fā)(快遞軟件開發(fā)公司)

本篇文章給大家談?wù)効爝f軟件開發(fā),以及快遞軟件開發(fā)公司對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、有什么物流軟件可以推薦的 2、快寶物流快遞是什么 3、國際快遞軟件 4、國際快遞軟件哪家好? 5、做一個(gè)快遞物流方面的軟件系統(tǒng)需要多少錢? 有什么物流軟件...

如何修改apk安裝包安裝路徑(手機(jī)如何更改安裝包安裝路徑)

如何修改apk安裝包安裝路徑(手機(jī)如何更改安裝包安裝路徑)

今天給各位分享如何修改apk安裝包安裝路徑的知識,其中也會對手機(jī)如何更改安裝包安裝路徑進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、如何更改安裝默認(rèn)路徑 2、如何修改apk游戲文件 3、安裝軟件如何更改路徑? 4、如何修改apk 數(shù)據(jù)包路徑...

c反應(yīng)蛋白高說明什么(c反應(yīng)蛋白高說明什么新冠感染后)

c反應(yīng)蛋白高說明什么(c反應(yīng)蛋白高說明什么新冠感染后)

本篇文章給大家談?wù)刢反應(yīng)蛋白高說明什么,以及c反應(yīng)蛋白高說明什么新冠感染后對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、c反應(yīng)蛋白高說明什么 2、c反應(yīng)蛋白偏高說明什么 3、c-反應(yīng)蛋白高是怎么回事 4、超敏c反應(yīng)蛋白偏高說明什么 c反應(yīng)蛋白高說明什么 C...

nginx自動安裝和源碼安裝的區(qū)別(nginx源碼安裝 linux)

nginx自動安裝和源碼安裝的區(qū)別(nginx源碼安裝 linux)

今天給各位分享nginx自動安裝和源碼安裝的區(qū)別的知識,其中也會對nginx源碼安裝 linux進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、源碼安裝的nginx注冊到系統(tǒng)服務(wù) 2、ubuntu服務(wù)器 自己安裝的nginx 寶塔安裝nginx 和通過寶...

hotdog數(shù)字藏品下載鏈接(hotdog數(shù)字藏品平臺官網(wǎng))

hotdog數(shù)字藏品下載鏈接(hotdog數(shù)字藏品平臺官網(wǎng))

今天給各位分享hotdog數(shù)字藏品下載鏈接的知識,其中也會對hotdog數(shù)字藏品平臺官網(wǎng)進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、忽然想知道hotdog數(shù)字藏品能有啥用? 2、下載hotdog app之后真的可以賺錢嗎? 3、問詢一下都在玩ho...