cao死我好湿好紧好爽动态视屏|精选久久久久久久久久|中文无码精品一区二区三区四季|AAA国语精品刺激对白视频|

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

css圖片自動(dòng)切換代碼(css圖片自動(dòng)切換代碼怎么弄)

軟件開放9個(gè)月前 (05-06)350

概述

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

涉及知識(shí)點(diǎn)

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

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

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

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

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

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

示例效果圖

css圖片自動(dòng)切換代碼(css圖片自動(dòng)切換代碼怎么弄)

本例采用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ū)動(dòng) ////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ū)動(dòng)對象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ū)動(dòng)不為空,則關(guān)閉//self.close_browser_nicely(self.__driver)if( this.driver != null) {this.driver.Quit; //# 關(guān)閉后切要為None,否則啟動(dòng)報(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)于日志幫助類,代碼如下:

備注

行路難·其一

【作者】李白 【朝代】唐

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

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

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

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

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

長風(fēng)破浪會(huì)有時(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://m.smallwaterjetsystem.com/post/111814.html

“css圖片自動(dòng)切換代碼(css圖片自動(dòng)切換代碼怎么弄)” 的相關(guān)文章

安卓軟件開發(fā)教程(安卓軟件開發(fā)教程視頻)

安卓軟件開發(fā)教程(安卓軟件開發(fā)教程視頻)

本篇文章給大家談?wù)劙沧寇浖_發(fā)教程,以及安卓軟件開發(fā)教程視頻對應(yīng)的知識(shí)點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、如何通過自學(xué)成為一名安卓軟件開發(fā)工程師 2、如何自己開發(fā)一個(gè)app軟件 3、新手剛剛學(xué)習(xí)android,推薦android開發(fā)的入門教程 4、誰有好的安...

autojs源碼(autojs源碼提取器)

autojs源碼(autojs源碼提取器)

今天給各位分享autojs源碼的知識(shí),其中也會(huì)對autojs源碼提取器進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、手機(jī)autojs 怎樣host跳過活著屏蔽廣告源碼 2、大量autojs常用代碼介紹以及示例 3、Autojs微信自動(dòng)操作免root...

聚寶坊手游交易平臺(tái)多久到賬(聚寶齋交易后多久到賬)

聚寶坊手游交易平臺(tái)多久到賬(聚寶齋交易后多久到賬)

今天給各位分享聚寶坊手游交易平臺(tái)多久到賬的知識(shí),其中也會(huì)對聚寶齋交易后多久到賬進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、諾亞傳說聚寶樓幾天可以到款 2、問道手游聚寶寨提現(xiàn)要多久,4天了還在申請中 3、問道手游聚寶齋買角色定金交了什么時(shí)候可以拿到...

送真充手游(送真充手游哪個(gè)最好玩)

送真充手游(送真充手游哪個(gè)最好玩)

今天給各位分享送真充手游的知識(shí),其中也會(huì)對送真充手游哪個(gè)最好玩進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、和凡人飛仙傳(無限送真充)類似手游有嗎? 2、魂斗三國(策劃送真充)手游充值有打折嗎? 3、和摸金校尉之天字卷(無限送真充)類似手游有嗎?...

怎么查看自己申請過的郵箱(怎么查郵箱申請時(shí)間)

怎么查看自己申請過的郵箱(怎么查郵箱申請時(shí)間)

今天給各位分享怎么查看自己申請過的郵箱的知識(shí),其中也會(huì)對怎么查郵箱申請時(shí)間進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、我注冊了自己的郵箱.在哪去看我的郵箱? 2、我申請了郵箱,怎么能看到啊我想查看我的郵箱應(yīng)該怎么查 3、如何知道自己的郵箱 注冊過...

麒麟廣告聯(lián)盟a哪個(gè)3482.c∩(新麒麟廣告聯(lián)盟)

麒麟廣告聯(lián)盟a哪個(gè)3482.c∩(新麒麟廣告聯(lián)盟)

本篇文章給大家談?wù)匃梓霃V告聯(lián)盟a哪個(gè)3482.c∩,以及新麒麟廣告聯(lián)盟對應(yīng)的知識(shí)點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、廣告聯(lián)盟是怎么運(yùn)作的,盈利方式是什么 2、我的電腦怎么幾分鐘就彈出一個(gè)麒麟廣告網(wǎng)站? 3、域名注冊時(shí)間不到6個(gè)月,就一定通過不了谷歌廣告聯(lián)盟審核嗎...