在.net中使用selenium 2.0 web驱动程序的示例/教程?

时间:2011-05-31 12:53:57

标签: asp.net selenium selenium-webdriver

有没有使用.net?

使用selenium 2.0网络驱动程序的教程/示例

我已经尝试过搜索,但只能找到java,没有关于.net和selenium 2.0 web驱动程序

2 个答案:

答案 0 :(得分:9)

这里的文档在C#中有一个例子: http://seleniumhq.org/docs/03_webdriver.html

using OpenQA.Selenium.Firefox;
using OpenQA.Selenium;

class GoogleSuggest
{

    static void Main(string[] args)
    {
        IWebDriver driver = new FirefoxDriver();

        //Notice navigation is slightly different than the Java version
        //This is because 'get' is a keyword in C#
        driver.Navigate().GoToUrl("http://www.google.com/");
        IWebElement query = driver.FindElement(By.Name("q"));
        query.SendKeys("Cheese");
        System.Console.WriteLine("Page title is: " + driver.Title);
        driver.Quit();
    }

}

答案 1 :(得分:0)