How do I use Selenium in C#?

后端 未结 9 924
孤街浪徒
孤街浪徒 2020-12-01 06:38

Selenium.

I downloaded the C# client drivers and the IDE. I managed to record some tests and successfully ran them from the IDE. But now I want to do that using C#. I

相关标签:
9条回答
  • 2020-12-01 07:26

    C#

    1. First of all, download Selenium IDE for Firefox from the Selenium IDE.

      Use and play around with it, test a scenario, record the steps, and then export it as a C# or Java project as per your requirement.

      The code file contains code something like:

       using System;
       using System.IO;
       using Microsoft.VisualStudio.TestTools.UnitTesting;
       using OpenQA.Selenium;
       using OpenQA.Selenium.Chrome;
      
       // Add this name space to access WebDriverWait
       using OpenQA.Selenium.Support.UI;
      
       namespace MyTest
       {
           [TestClass]
           public class MyTest
           {
               public static IWebDriver Driver = null;
      
               // Use TestInitialize to run code before running each test
               [TestInitialize()]
               public void MyTestInitialize()
               {
                   try
                   {
                       string path = Path.GetFullPath(""); // Copy the Chrome driver to the debug
                                                           // folder in the bin or set path accordingly
                       Driver = new ChromeDriver(path);
                   }
                   catch (Exception ex)
                   {
                       string error = ex.Message;
                   }
               }
      
               // Use TestCleanup to run code after each test has run
               [TestCleanup()]
               public void MyCleanup()
               {
                   Driver.Quit();
               }
      
               [TestMethod]
               public void MyTestMethod()
               {
                   try
                   {
                       string url = "http://www.google.com";
                       Driver.Navigate().GoToUrl(url);
      
                       IWait<IWebDriver> wait = new WebDriverWait(Driver, TimeSpan.FromSeconds(30.00)); // Wait in Selenium
                       wait.Until(ExpectedConditions.PresenceOfAllElementsLocatedBy(By.XPath(@"//*[@id='lst - ib']")));
      
                       var txtBox = Driver.FindElement(By.XPath(@"//*[@id='lst - ib']"));
                       txtBox.SendKeys("Google Office");
                       var btnSearch = Driver.FindElement(By.XPath("//*[@id='tsf']/div[2]/div[3]/center/input[1]"));
                       btnSearch.Click();
      
                       System.Threading.Thread.Sleep(5000);
                   }
                   catch (Exception ex)
                   {
                       string error = ex.Message;
                   }
               }
           }
       }
      
    2. You need to get the Chrome driver from here.

    3. You need to get NuGet packages and necessary DLL files for the Selenium NuGet website.

    4. You need to understand the basics of Selenium from the Selenium documentation website.

    That's all...

    0 讨论(0)
  • 2020-12-01 07:29

    To set up the IDE for Selenium in conjunction with C# is to use Visual Studio Express. And you can use NUnit as the testing framework. The below links provide you more details. It seems you have set up what is explained in the first link. So check the second link for more details on how to create a basic script.

    How to setup C#, NUnit and Selenium client drivers on Visual Studio Express for Automated tests

    Creating a basic Selenium web driver test case using NUnit and C#

    Sample code from the above blog post:

    using System;
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    // Step a
    using OpenQA.Selenium;
    using OpenQA.Selenium.Support;
    using OpenQA.Selenium.Firefox;
    using NUnit.Framework;
    
    namespace NUnitSelenium
    {
        [TestFixture]
        public class UnitTest1
        {
            [SetUp]
            public void SetupTest()
            {
            }
    
            [Test]
            public void Test_OpeningHomePage()
            {
                // Step b - Initiating webdriver
                IWebDriver driver = new FirefoxDriver();
                // Step c: Making driver to navigate
                driver.Navigate().GoToUrl("http://docs.seleniumhq.org/");
    
                // Step d
                IWebElement myLink = driver.FindElement(By.LinkText("Download"));
                myLink.Click();
    
                // Step e
                driver.Quit();
    
                )
    
            }
        }
    
    0 讨论(0)
  • 2020-12-01 07:29

    Use the below code once you've added all the required C# libraries to the project in the references.

    using OpenQA.Selenium;
    using OpenQA.Selenium.Firefox;
    namespace SeleniumWithCsharp
    {
        class Test
        {
            public IWebDriver driver;
    
    
            public void openGoogle()
            {
                // creating Browser Instance
                driver = new FirefoxDriver();
                //Maximizing the Browser
                driver.Manage().Window.Maximize();
                // Opening the URL
                driver.Navigate().GoToUrl("http://google.com");
                driver.FindElement(By.Id("lst-ib")).SendKeys("Hello World");
                driver.FindElement(By.Name("btnG")).Click();
            }
    
            static void Main()
            {
                Test test = new Test();
                test.openGoogle();
            }
    
        }
    }
    
    0 讨论(0)
  • 2020-12-01 07:30

    One of the things that I had a hard time finding was how to use PageFactory in C#. Especially for multiple IWebElements. If you wish to use PageFactory, here are a few examples. Source: PageFactory.cs

    To declare an HTML WebElement, use this inside the class file.

    private const string _ID ="CommonIdinHTML";
    [FindsBy(How = How.Id, Using = _ID)]
    private IList<IWebElement> _MultipleResultsByID;
    
    private const string _ID2 ="IdOfElement";
    [FindsBy(How = How.Id, Using = _ID2)]
    private IWebElement _ResultById;
    

    Don't forget to instantiate the page object elements inside the constructor.

    public MyClass(){
        PageFactory.InitElements(driver, this);
    }
    

    Now you can access that element in any of your files or methods. Also, we can take relative paths from those elements if we ever wish to. I prefer pagefactory because:

    • I don't ever need to call the driver directly using driver.FindElement(By.Id("id"))
    • The objects are lazy initialized

    I use this to write my own wait-for-elements methods, WebElements wrappers to access only what I need to expose to the test scripts, and helps keeps things clean.

    This makes life a lot easier if you have dynamic (autogerated) webelements like lists of data. You simply create a wrapper that will take the IWebElements and add methods to find the element you are looking for.

    0 讨论(0)
  • 2020-12-01 07:30
    FirefoxDriverService service = FirefoxDriverService.CreateDefaultService(@"D:\DownloadeSampleCode\WordpressAutomation\WordpressAutomation\Selenium", "geckodriver.exe");
    service.Port = 64444;
    service.FirefoxBinaryPath = @"C:\Program Files (x86)\Mozilla Firefox\firefox.exe";
    Instance = new FirefoxDriver(service); 
    
    0 讨论(0)
  • 2020-12-01 07:36
    using System;
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    using OpenQA.Selenium;
    using OpenQA.Selenium.Interactions;
    using OpenQA.Selenium.Support.UI;
    using SeleniumAutomationFramework.CommonMethods;
    using System.Text;
    
    [TestClass]
    public class SampleInCSharp
    {
        public static IWebDriver driver = Browser.CreateWebDriver(BrowserType.chrome);
    
        [TestMethod]
        public void SampleMethodCSharp()
        {
            driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5));
            driver.Url = "http://www.store.demoqa.com";
            driver.Manage().Window.Maximize();
    
            driver.FindElement(By.XPath(".//*[@id='account']/a")).Click();
            driver.FindElement(By.Id("log")).SendKeys("kalyan");
            driver.FindElement(By.Id("pwd")).SendKeys("kalyan");
            driver.FindElement(By.Id("login")).Click();
    
            WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
            IWebElement myDynamicElement = wait.Until<IWebElement>(d => d.FindElement(By.LinkText("Log out")));
    
            Actions builder = new Actions(driver);
            builder.MoveToElement(driver.FindElement(By.XPath(".//*[@id='menu-item-33']/a"))).Build().Perform();
            driver.FindElement(By.XPath(".//*[@id='menu-item-37']/a")).Click();
            driver.FindElement(By.ClassName("wpsc_buy_button")).Click();
            driver.FindElement(By.XPath(".//*[@id='fancy_notification_content']/a[1]")).Click();
            driver.FindElement(By.Name("quantity")).Clear();
            driver.FindElement(By.Name("quantity")).SendKeys("10");
            driver.FindElement(By.XPath("//*[@id='checkout_page_container']/div[1]/a/span")).Click();
            driver.FindElement(By.ClassName("account_icon")).Click();
            driver.FindElement(By.LinkText("Log out")).Click();
            driver.Close();
        }
    }
    
    0 讨论(0)
提交回复
热议问题