Ricerca…


Osservazioni

Questo è un esempio molto semplice o l'avvio del selenio, l'accesso e l'uso di una pagina e l'interruzione del selenio all'interno di NUnit.

Semplice Selenio-NUnit

prereqs:

  • Il selenio e i driver del browser richiesti sono installati (disponibile in Nuget)
  • NUnit è stato installato in VS e aggiunto al progetto
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.IE;
using System;
[TestFixture]
public class GoToGoogle
{
    //The WebDriver object
    IWebDriver driver;
    //Ran before test cases
    [TestFixtureSetUp]
    public void setup()
    {
        //Initialize the webdriver
        //An example of IE
        driver = new InternetExplorerDriver();
        //Firefox Example
        //driver = new FirefoxDriver();
        //An example of Chrome
        //driver = new ChromeDriver();

        //Wait x seconds to find the element and then fail, x = 5 here
        driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5));
    }
    //Ran after the test case has completed
    [TestFixtureTearDown]
    public void tearDown()
    {
        driver.Quit();
    }
    [Test]
    public void gotoGoogle()
    {
        //going to google.com
        driver.Navigate().GoToUrl("www.google.com");
        //Assert we are on google.com
        Assert.AreEqual(driver.Title, "Google");
        //Getting the search field
        IWebElement searchField = driver.FindElement(By.Name("q"));
        //Typing in the search field
        searchField.SendKeys("Selenium Tutorial");
        //Submitting
        searchField.Submit();

    }


}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow