Selenium for C#的入門Demo

來源:互聯網
上載者:User

標籤:

原文轉載:http://www.cnblogs.com/halia/p/3562132.html?utm_source=tuicool

最近剛開始接觸Selenium, 發現很多例子都是用java寫的,因為自己學的java早就忘記了,現在一直都是用的C#,這裡自己參考java的代碼自己寫了一個C#,這裡用到的是WebDriver,也就是所謂的Selenium2.0吧

首先是使用環境配置

1)下載配置java環境,下載安裝JDK或者JRE,在JDK安裝完成後在cmd的指令輸入java查看java環境是否搭建完成,如果報“java is not recognized as an internal or external command”. 那麼請將JDK中bin的安裝路徑添加到環境變數Path中去(我的電腦右擊屬性—進階系統設定—環境變數—Path,這裡我系統是Win7的)

2)下載並運行Selenium Server,官方:http://docs.seleniumhq.org/download/

要下載的Selenium Server包是Selenium-Server-standalone-2.39.0.jar。要下載的語言套件是C#的Selenium-donet-2.39.0.zip

啟動Selenium測試伺服器,在cmd命令下找到Selenium server包,然後運行java -jar Selenium-Server-standalone-2.39.0.jar

3)編寫測試專案,在VS中建立一個單元測試項目,給項目添加引用,把C#的Selenium-donet-2.39.0包裡的dll檔案(Selenium.WebDriverbackedSelenium.dll,ThoughtWorkd.Selenium.Core.dll,WebDriver.dll,WebDriver.Support.dll)添加到項目中,代碼如下。功能是使用的Firefox瀏覽器開啟百度首頁,然後搜尋Selenium。

using Microsoft.VisualStudio.TestTools.UnitTesting;using OpenQA.Selenium;using OpenQA.Selenium.Firefox;namespace SeleniumTestProject{    [TestClass]    public class SeleniumTest    {        [TestMethod]        public void TestMethod()        {            IWebDriver driver = new FirefoxDriver();            driver.Navigate().GoToUrl("http://www.baidu.com");            driver.FindElement(By.Id("kw")).SendKeys("Selenium");            driver.FindElement(By.Id("su")).Click();            driver.Quit();        }    }}

上面是建立了一個Firefox Driver的執行個體,因為firefox是預設安裝路徑,所以webdriver可以直接存取到它。如果你想用IE和Chrome瀏覽器,則需要另外下載IEDriverServer.exe 和chromeDriver.exe.

如果在使用IE瀏覽器的時候遇到一個異常說安全模式的問題,那麼我自己看到的一個解決辦法,就是設定IEDriverOpiton。具體代碼如下。我的IEDriverServer.exe放在IE的同級目錄下。

InternetExplorerOptions ieO=new InternetExplorerOptions();//設定ingnore protected mode值為真ieO.IntroduceInstabilityByIgnoringProtectedModeSettings=true;IWebDriver driver = new InternetExplorerDriver(@"C:\Program Files\Internet Explorer",ieO);           driver.Navigate().GoToUrl("http://www.cnblogs.com");

這樣IE瀏覽器就可以正常開啟,導航到部落格園首頁。

Selenium for C#的入門Demo

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.