Click here to Skip to main content
15,878,814 members
Articles / Programming Languages / C#

Selenium WebDriver + .NET Core 2.0- What Everyone Ought to Know

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
2 Jul 2017Ms-PL5 min read 15.9K   5   2
Learn how to create .NET Core projects that can run Selenium WebDriver tests. Execute from command line simultaneously MSTest, NUnit and XUnit tests

Introduction

In my WebDriver Series, you can find lots of useful information about how to use Selenium WebDriver for UI automation. As you probably know, one of the newest and coolest Microsoft technologies is .NET Core. However, prior the release of Visual Studio 2017 Preview 2 we were unable to run WebDriver tests using .NET Core projects. In this article, I am going to show you how to combine them and "experience the future".

What Problem Are We Trying to Solve?

If you use Visual Studio 2017 15.2 and try to create .NET Standard library, by default, the library targets .NETStandard 1.4.

Image 1

When you try to install the Selenium.WebDriver NuGet, the following error occurs:

Image 2

Old NuGets that target .NET Framework are not compatible with applications that target .NET Core or .NET Standard < 2.0. From 2.0 version and above Microsoft will make them work. You can check this article to see all changes. So our goal here will be to upgrade our projects to .NETStandard 2.0.

Read more about .NET Core here.

Selenium WebDriver + .NET Core

First, you will need to install Visual Studio 2017 Preview 2. This is an early access version of the tooling where .NET Core 2.0 and .NET Standard 2.0 are supported. This means that you will be able to combine .NET Core applications with .NET Framework NuGets that do not have .NET Core support. This is the case of Selenium.WebDriver. Also, you can download the .NET Core SDK and command line tools from here. I will show you later how you can use them to run simultaneously tests that use different test frameworks such as MSTest, NUnit and XUnit.

When you are ready, create a new .NET Standard class library and open the project's Properties. You will need to change the target framework to .NETStandard 2.0.

Image 3

Install WebDriver NuGets

I will show you how to configure the most common drivers- FirefoxDriver, ChromeDriver and EdgeDriver. So we will need to install a couple of NuGets to do that. One of the coolest new features of the .NET Core tooling is that the package.config is gone and all packages are referenced directly in the project's MSBuild file. Moreover, you can edit the project files without unloading and reloading the projects.

XML
<PackageReference Include="Selenium.Chrome.WebDriver" Version="2.30.0" />
<PackageReference Include="Selenium.Firefox.WebDriver" Version="0.17.0" />
<PackageReference Include="Selenium.Support" Version="3.4.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.4.0" />
<PackageReference Include="Selenium.WebDriver.MicrosoftDriver" Version="15.15063.0" />

When you run your tests, you will notice that error about System.Security.Permissions DLL occurs. To fix it, you need to install the System.Security.Permissions NuGet package (the prerelease version).

Install MSTest Framework NuGets

You need to install the MSTest.TestFramework and MSTest.TestAdapter NuGets. Through the later, you will see your tests in the Test Explorer window.

Install NUnit Framework NuGets

For NUnit, you need the NUnit and NUnit3TestAdapter NuGets. Make sure that you check the "Include prerelease" checkbox in the NuGet Packages Window. You will need to install an alpha version of the NUnit test adapter. The older(stable) versions are not compatible with .NET Core.

XML
<PackageReference Include="NUnit" Version="3.7.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />

Install xUnit Framework NuGets

Similar to others, you need xunit and xunit.runner.visualstudio packages to be able to run XUnit tests.

Finally, you need one last NuGet package so that you can execute tests from .NET Standard class library- Microsoft.NET.Test.Sdk. Below, you can find the list of all references, you need only to copy them to your project file, and they will be installed automatically.

XML
<ItemGroup>
  <PackageReference Include="Microsoft.NET.Test.Sdk" 
  Version="15.3.0-preview-20170628-02" />

  <PackageReference Include="MSTest.TestAdapter" Version="1.1.17" />
  <PackageReference Include="MSTest.TestFramework" Version="1.1.17" />
    
  <PackageReference Include="NUnit" Version="3.7.1" />
  <PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />
    
  <PackageReference Include="Selenium.Chrome.WebDriver" 
  Version="2.30.0" />
  <PackageReference Include="Selenium.Firefox.WebDriver" 
  Version="0.17.0" />
  <PackageReference Include="Selenium.Support" 
  Version="3.4.0" />
  <PackageReference Include="Selenium.WebDriver" 
  Version="3.4.0" />
  <PackageReference Include="Selenium.WebDriver.MicrosoftDriver" 
  Version="15.15063.0" />
    
  <PackageReference Include="System.Security.Permissions" 
  Version="4.4.0-preview2-25405-01" />
    
  <PackageReference Include="xunit" Version="2.3.0-beta3-build3705" />
    
  <PackageReference Include="xunit.runner.visualstudio" 
  Version="2.3.0-beta3-build3705" />
</ItemGroup>

Configure Different Selenium Drivers

FirefoxDriver

You can use FirefoxDriver without any problems but as you will see, this is not the case for the rest of the drivers.

C#
[Test]
public void TestWithFirefoxDriver()
{
    using (var driver = new FirefoxDriver())
    {
        driver.Navigate().GoToUrl
             (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
        var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
        var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
        ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
        var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
        var clickableElement = wait.Until
              (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
        clickableElement.Click();
    }
}

ChromeDriver

If you use the default constructor of ChromeDriver, the following exception is thrown.

Message: OpenQA.Selenium.DriverServiceNotFoundException: The chromedriver.exe file does not exist in the current directory or in a directory on the PATH environment variable. The driver can be downloaded at http://chromedriver.storage.googleapis.com/index.html.

This happens because the NuGet packages for .NET Core projects are loaded from a global place instead of the packages folder of the .NET Framework projects. To fix it, we need to specify the path to the execution folder.

C#
[Test]
public void TestWithChromeDriver()
{
    using (var driver = new ChromeDriver
          (Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)))
    {
        driver.Navigate().GoToUrl
         (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
        var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
        var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
        ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
        var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
        var clickableElement = wait.Until
              (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
        clickableElement.Click();
    }
}

EdgeDriver

A similar exception is thrown for the EdgeDriver, the fix is similar.

C#
[Test]
public void TestWithEdgeDriver()
{
    using (var driver = new EdgeDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)))
    {
        driver.Navigate().GoToUrl
           (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
        var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
        var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
        ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
        var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
        var clickableElement = wait.Until
               (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
        clickableElement.Click();
    }
}

MSTest Tests in .NET Core

C#
[TestClass]
public class AutomateThePlanetTestsMsTest
{
    [TestMethod]
    public void TestWithFirefoxDriver()
    {
        using (var driver = new FirefoxDriver())
        {
            driver.Navigate().GoToUrl
                (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [TestMethod]
    public void TestWithEdgeDriver()
    {
        using (var driver = new EdgeDriver(Path.GetDirectoryName
                            (Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
                     (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                     (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [TestMethod]
    public void TestWithChromeDriver()
    {
        using (var driver = new ChromeDriver
             (Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
               (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
               (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }
}

NUnit Tests in .NET Core

C#
[TestFixture]
public class AutomateThePlanetTests
{
    [Test]
    public void TestWithFirefoxDriver()
    {
        using (var driver = new FirefoxDriver())
        {
            driver.Navigate().GoToUrl
                (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
               (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [Test]
    public void TestWithEdgeDriver()
    {
        using (var driver = new EdgeDriver(Path.GetDirectoryName
                             (Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
               (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                   (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [Test]
    public void TestWithChromeDriver()
    {
        using (var driver = new ChromeDriver
             (Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
                (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }
}

xUnit Tests in .NET Core

C#
public class AutomateThePlanetTestsXUnit
{
    [Fact]
    public void TestWithFirefoxDriver()
    {
        using (var driver = new FirefoxDriver())
        {
            driver.Navigate().GoToUrl
                   (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                     (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [Fact]
    public void TestWithEdgeDriver()
    {
        using (var driver = new EdgeDriver(Path.GetDirectoryName
                           (Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
                 (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                  (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }

    [Fact]
    public void TestWithChromeDriver()
    {
        using (var driver = new ChromeDriver(Path.GetDirectoryName
                                    (Assembly.GetExecutingAssembly().Location)))
        {
            driver.Navigate().GoToUrl
                   (@"https://automatetheplanet.com/multiple-files-page-objects-item-templates/");
            var link = driver.FindElement(By.PartialLinkText("TFS Test API"));
            var jsToBeExecuted = $"window.scroll(0, {link.Location.Y});";
            ((IJavaScriptExecutor)driver).ExecuteScript(jsToBeExecuted);
            var wait = new WebDriverWait(driver, TimeSpan.FromMinutes(1));
            var clickableElement = wait.Until
                  (ExpectedConditions.ElementToBeClickable(By.PartialLinkText("TFS Test API")));
            clickableElement.Click();
        }
    }
}

Run All Tests from Command Line

As I previously told you, you can run all of your different test framework tests from the Test Explorer window. However, if you have installed the .NET Core command line tools, you can run all of your tests from the command line as well. You can use the following command to do so- dotnet test --logger=trx

You can find more about the dotnet test command in the official documentation.

As you can see from the image below, all of our tests are run through a single command. It ran 3 MSTest, 3 NUnit and 3 xUnit tests. Amazing! Welcome to the Future! I cannot wait for .NET Core 2.0 and .NET Standard to be officially released. You can check the official .NET Core ??Roadmap for more information.

Image 4

So Far in the "Design Patterns in Automated Testing" Series

  1. Execute UI Tests in the Cloud- Cross Browser Testing
  2. Most Exhaustive WebDriver Locators Cheat Sheet
  3. 5 Reasons You Should Use the Brand-New C# 7.0 in Your WebDriver Tests
  4. Enhanced Selenium WebDriver Tests with the New Improved C# 6.0
  5. Use Selenium WebDriver UI Tests for Load Testing in the Cloud
  6. Most Complete Selenium WebDriver C# Cheat Sheet

The post Selenium WebDriver + .NET Core 2.0- What Everyone Ought to Know appeared first on Automate The Planet.

All images are purchased from DepositPhotos.com and cannot be downloaded and used for free.
License Agreement

This article was originally posted at https://automatetheplanet.com/webdriver-dotnetcore2

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
CEO Automate The Planet
Bulgaria Bulgaria
CTO and Co-founder of Automate The Planet Ltd, inventor of BELLATRIX Test Automation Framework, author of "Design Patterns for High-Quality Automated Tests: High-Quality Test Attributes and Best Practices" in C# and Java. Nowadays, he leads a team of passionate engineers helping companies succeed with their test automation. Additionally, he consults companies and leads automated testing trainings, writes books, and gives conference talks. You can find him on LinkedIn every day.

Comments and Discussions

 
QuestionPageFactory Pin
SS1727-Oct-17 1:14
SS1727-Oct-17 1:14 
AnswerRe: PageFactory Pin
Anton Angelov30-Oct-17 7:57
Anton Angelov30-Oct-17 7:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.