Nutstone.Selenium.Core
1.0.7
See the version list below for details.
dotnet add package Nutstone.Selenium.Core --version 1.0.7
NuGet\Install-Package Nutstone.Selenium.Core -Version 1.0.7
<PackageReference Include="Nutstone.Selenium.Core" Version="1.0.7" />
paket add Nutstone.Selenium.Core --version 1.0.7
#r "nuget: Nutstone.Selenium.Core, 1.0.7"
// Install Nutstone.Selenium.Core as a Cake Addin #addin nuget:?package=Nutstone.Selenium.Core&version=1.0.7 // Install Nutstone.Selenium.Core as a Cake Tool #tool nuget:?package=Nutstone.Selenium.Core&version=1.0.7
Introduction
Hi. this package is written out of boredom with havng to run UI tests manually whilst developing .net core (5) full-stack applications.
It provides a fluent interface for writing selenium based unit TESTS, but could be used to create full functioning selenium applications.
it is not complete , but is basically functional (hence the readme)
David.
Installation
Install-Package Nutstone.Selenium.Core
install the selenium package of your choice.
This package ONLY (currently) supports ChromeDriver , but can be extended be implementing by implementing ISeleniumWebDriver.
note this package makes extensive use of the excellent Scrutor package so ALL supported interfaces will be loaded at startup , you do not have to register them yourself
for example:-
using Nutstone.Selenium.Core.Browser.Drivers;
using Nutstone.Selenium.Core.Configuration;
using OpenQA.Selenium;
using OpenQA.Selenium.Edge;
using System.IO;
namespace test_nutstone_selenium.Drivers
{
public class SeleniumEdgeDriver : ISeleniumWebDriver
{
public string BrowserType => DriverConstants.Edge;
public IWebDriver GetDriver(DriverConfiguration driverConfiguration)
{
var edgeOptions = new EdgeOptions
{
LeaveBrowserRunning = driverConfiguration.LeaveBrowserRunning,
BinaryLocation = Path.Combine(driverConfiguration.DriverPath, "msedgedriver.exe")
};
return new EdgeDriver(edgeOptions);
}
public string GetDriverExecutable()
{
return "msedgedriver";
}
}
}
Getting Started
Define your page models
using Nutstone.Selenium.Core.Attributes;
namespace test_nutstone_selenium.Tests
{
public class TestModel
{
[SeleniumModel(SelectorType.Xpath, "//*[@id='simpletests']")]
public bool SimpleTestsButton { get; set; } = false;
[SeleniumModel(SelectorType.Xpath, "//*[@id='firstname']")]
public string FirstName { get; set; }
[SeleniumModel(SelectorType.Xpath, "//*[@id='surname']")]
public string Surname { get; set; }
[SeleniumModel(SelectorType.Xpath, "//*[@id='amount']")]
public decimal? Amount { get; set; } = null;
[SeleniumModel(SelectorType.Xpath, "//*[@id='amountText']")]
public string AmountText { get; set; } = null;
[SeleniumModel(SelectorType.Xpath, "//*[@id='sex']")]
public string Sex { get; set; } = null;
[SeleniumModel(SelectorType.Xpath, "//*[@id='email']")]
public string Email { get; set; } = null;
public DateTime DateOfBirth { get; set; }
}
}
Define your page processor
using Nutstone.Selenium.Core.Custom.Page;
using Nutstone.Selenium.Core.Test.Service;
using Nutstone.Selenium.Core.Webdriver.Extensions;
namespace test_nutstone_selenium.Tests
{
public class TestPage : CustomSeleniumPage<TestModel>
{
public TestPage(IWebDriverProxy webDriverProxy, IWebTestService webTestService) : base(webDriverProxy, webTestService)
{
}
public override IWebTestService Run()
{
this
.WithClick(x => x.SimpleTestsButton) // click on a page
.WithUrl("/simplepage") // wait or this url to contain
.WithInput(x => x.FirstName) // populate firstname
.WithInput(x => x.Surname)
.WithInput(x => x.Amount)
.WithSelect(x => x.Sex)
.WithInput(x => x.Email)
.Assert(); // run any assertions
return this.webTestService;
}
}
}
Run your test
using NUnit.Framework;
using Nutstone.Selenium.Core.Configuration;
using Nutstone.Selenium.Core.Loggers.LoggerFile;
using Nutstone.Selenium.Core.Testing;
namespace test_nutstone_selenium.Tests
{
public class NutstoneCoreTests : SeleniumTestIntergrationFixture
{
public NutstoneCoreTests()
{
this.Initialise((logBuilder) =>
{
logBuilder.AddFileLogger(@"The-full-filename-of-the-log-file");
}, () =>
{
return DriverConfiguration.WithChrome()
.SetDriverPathFromLocation(@"The-Fullpath-of-the-seleniumdriver")
.SetLeaveBrowserRunng(true)
.SetFullscreen(true)
.SetTakeScreenShots(true)
.SetClearScreenShots(true)
.SetScreenShotDirectoryPath(@"Wherever-You-Want-TheScreenShots-directory");
});
}
[Test]
public void Can_Run_A_Selenium_Test()
{
this.RunWebTest(() =>
{
var basicModel = new TestModel();
this.webTestService.OpenUrl("http://localhost:4200")
.WithCustomPage(basicModel)
.SetValue(x => x.SimpleTestsButton, true)
.SetValue(x => x.FirstName, "Tess")
.SetValue(x => x.Surname, "nutstone")
.SetValue(x => x.Amount, 200.34M)
.WithAssertion(x => x.FirstName).IsEqualTo(basicModel.FirstName)
.WithAssertion(x => x.AmountText).IsMonetaryEqualTo(200.34M)
.Run();
});
}
}
}
Extending your page functionality
Each custom page has access to the underlying WebDriverProxy interface and the underlying IWebdriver interface (via webDriverProxy.Driver).
so you can extend the functionaly o your page relatvely easily. In this case we are going to populate a date of birth element that has 3 html input elements:-
using Nutstone.Selenium.Core.Custom.Page;
using Nutstone.Selenium.Core.Test.Service;
using Nutstone.Selenium.Core.Webdriver.Extensions;
using OpenQA.Selenium;
namespace test_nutstone_selenium.Tests
{
public class TestPage : CustomSeleniumPage<TestModel>
{
public TestPage(IWebDriverProxy webDriverProxy, IWebTestService webTestService) : base(webDriverProxy, webTestService)
{
}
private TestPage WithDate()
{
var dobAsStringArray = this.Model.DateOfBirth.ToShortDateString()
.Split("/");
this.webDriverProxy
.WithInput(By.XPath("//*[@id='dob-dd']"), dobAsStringArray[0], true)
.WithInput(By.XPath("//*[@id='dob-mm']"), dobAsStringArray[1], true)
.WithInput(By.XPath("//*[@id='dob-yy']"), dobAsStringArray[2], true);
return this;
}
public override IWebTestService Run()
{
this
.WithClick(x => x.SimpleTestsButton) // click on a page
.WithUrl("/simplepage") // wait or this url to contain
.WithInput(x => x.FirstName) // populate firstname
.WithInput(x => x.Surname)
.WithInput(x => x.Amount)
.WithSelect(x => x.Sex);
this.WithDate();
this
.WithInput(x => x.Email)
.Assert(); // run any assertions
return this.webTestService;
}
}
}
Extending your page functionality using an injected service
You can define your own transient service to supply extra functionality to your page(s).
define an interface that implements the pseudo interface ICustomWebProxyDriver
using Nutstone.Selenium.Core.Webdriver.Extensions;
using System;
namespace test_nutstone_selenium.Tests
{
public interface ITestCustomWebProxyDriver : ICustomWebDriverProxy
{
void WithDate(DateTime date);
}
}
Implement the interface
using Nutstone.Selenium.Core.Loggers.Extended.Logger;
using Nutstone.Selenium.Core.Webdriver.Extensions;
using OpenQA.Selenium;
using System;
namespace test_nutstone_selenium.Tests
{
public class TestCustomWebProxyDriver : ITestCustomWebProxyDriver
{
private readonly IExtendedLogger log;
private readonly IWebDriverProxy webDriverProxy;
public TestCustomWebProxyDriver(IExtendedLogger extendedLogger,
IWebDriverProxy webDriverProxy)
{
this.log = extendedLogger;
this.webDriverProxy = webDriverProxy;
}
public void WithDate(DateTime date)
{
var dobAsStringArray = date.ToShortDateString()
.Split("/");
this.webDriverProxy
.WithInput(By.XPath("//*[@id='dob-dd']"), dobAsStringArray[0], true)
.WithInput(By.XPath("//*[@id='dob-mm']"), dobAsStringArray[1], true)
.WithInput(By.XPath("//*[@id='dob-yy']"), dobAsStringArray[2], true);
}
}
}
inject the interface into your page
using Nutstone.Selenium.Core.Custom.Page;
using Nutstone.Selenium.Core.Test.Service;
using Nutstone.Selenium.Core.Webdriver.Extensions;
namespace test_nutstone_selenium.Tests
{
public class TestPage : CustomSeleniumPage<TestModel>
{
private readonly ITestCustomWebProxyDriver testCustomWebProxyDriver;
public TestPage(ITestCustomWebProxyDriver testCustomWebProxyDriver, IWebDriverProxy webDriverProxy, IWebTestService webTestService) : base(webDriverProxy, webTestService)
{
this.testCustomWebProxyDriver = testCustomWebProxyDriver;
}
public override IWebTestService Run()
{
this
.WithClick(x => x.SimpleTestsButton) // click on a page
.WithUrl("/simplepage") // wait or this url to contain
.WithInput(x => x.FirstName) // populate firstname
.WithInput(x => x.Surname)
.WithInput(x => x.Amount)
.WithSelect(x => x.Sex);
this.testCustomWebProxyDriver.WithDate(this.Model.DateOfBirth);
this
.WithInput(x => x.Email)
.Assert(); // run any assertions
return this.webTestService;
}
}
}
Defining an Application to Chain Pages
work in progress - comming soon
Contact
nutstone.selenium@gmail.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0.0)
- Microsoft.Extensions.Logging (>= 5.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 5.0.0)
- Moq (>= 4.16.1)
- Scrutor (>= 3.3.0)
- Selenium.Support (>= 4.0.1)
- Selenium.WebDriver (>= 4.0.1)
- Selenium.WebDriver.ChromeDriver (>= 95.0.4638.5400)
- SeleniumExtras.WaitHelpers (>= 1.0.2)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Nutstone.Selenium.Core:
Package | Downloads |
---|---|
Nutstone.Selenium.Mongo.Provider
Generic mongo selenium page/configuration provider for use with nutstone.selenium.core |
|
Nutstone.Selenium.Core.Testing
Provides selenium testfixture and test runner for nutstone.selenium |
|
Nutstone.Selenium.Mongo.Custom.Provider
Selenium data provider using mongo |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.2 | 235 | 4/24/2023 |
1.1.1 | 267 | 3/19/2023 |
1.0.130 | 691 | 7/22/2022 |
1.0.129 | 432 | 7/22/2022 |
1.0.128 | 452 | 7/19/2022 |
1.0.127 | 449 | 7/19/2022 |
1.0.126 | 469 | 7/19/2022 |
1.0.125 | 463 | 7/18/2022 |
1.0.124 | 440 | 7/18/2022 |
1.0.123 | 478 | 7/11/2022 |
1.0.122 | 447 | 7/11/2022 |
1.0.121 | 455 | 7/11/2022 |
1.0.120 | 455 | 7/11/2022 |
1.0.119 | 459 | 7/11/2022 |
1.0.118 | 459 | 7/11/2022 |
1.0.117 | 765 | 6/29/2022 |
1.0.116 | 451 | 6/27/2022 |
1.0.115 | 852 | 6/8/2022 |
1.0.114 | 441 | 6/8/2022 |
1.0.113 | 437 | 6/8/2022 |
1.0.112 | 459 | 6/8/2022 |
1.0.111 | 461 | 6/8/2022 |
1.0.110 | 450 | 6/8/2022 |
1.0.109 | 477 | 6/7/2022 |
1.0.108 | 596 | 6/7/2022 |
1.0.107 | 710 | 6/7/2022 |
1.0.106 | 479 | 6/7/2022 |
1.0.105 | 509 | 6/7/2022 |
1.0.104 | 522 | 6/7/2022 |
1.0.103 | 455 | 6/5/2022 |
1.0.102 | 842 | 5/30/2022 |
1.0.101 | 3,120 | 5/6/2022 |
1.0.100 | 461 | 5/5/2022 |
1.0.99 | 492 | 5/5/2022 |
1.0.98 | 466 | 5/5/2022 |
1.0.97 | 458 | 5/5/2022 |
1.0.96 | 762 | 5/5/2022 |
1.0.95 | 1,234 | 4/25/2022 |
1.0.94 | 506 | 4/9/2022 |
1.0.93 | 491 | 4/8/2022 |
1.0.92 | 482 | 4/8/2022 |
1.0.91 | 480 | 4/5/2022 |
1.0.90 | 1,162 | 3/29/2022 |
1.0.89 | 1,031 | 3/23/2022 |
1.0.88 | 474 | 3/23/2022 |
1.0.87 | 484 | 3/18/2022 |
1.0.86 | 509 | 3/16/2022 |
1.0.85 | 1,204 | 3/14/2022 |
1.0.84 | 503 | 3/9/2022 |
1.0.83 | 484 | 3/9/2022 |
1.0.82 | 478 | 3/8/2022 |
1.0.81 | 476 | 3/7/2022 |
1.0.80 | 465 | 3/6/2022 |
1.0.79 | 479 | 3/4/2022 |
1.0.78 | 461 | 3/4/2022 |
1.0.77 | 480 | 3/4/2022 |
1.0.76 | 479 | 3/3/2022 |
1.0.75 | 487 | 3/2/2022 |
1.0.74 | 471 | 3/2/2022 |
1.0.73 | 480 | 2/23/2022 |
1.0.72 | 466 | 2/22/2022 |
1.0.71 | 485 | 2/21/2022 |
1.0.70 | 487 | 2/21/2022 |
1.0.69 | 497 | 2/20/2022 |
1.0.68 | 464 | 2/18/2022 |
1.0.67 | 506 | 2/18/2022 |
1.0.66 | 470 | 2/18/2022 |
1.0.65 | 481 | 2/18/2022 |
1.0.64 | 466 | 2/18/2022 |
1.0.63 | 451 | 2/18/2022 |
1.0.62 | 1,423 | 2/6/2022 |
1.0.61 | 497 | 2/5/2022 |
1.0.60 | 492 | 2/5/2022 |
1.0.59 | 502 | 2/5/2022 |
1.0.58 | 480 | 1/31/2022 |
1.0.57 | 481 | 1/31/2022 |
1.0.56 | 483 | 1/29/2022 |
1.0.55 | 492 | 1/26/2022 |
1.0.54 | 491 | 1/26/2022 |
1.0.53 | 471 | 1/26/2022 |
1.0.52 | 494 | 1/26/2022 |
1.0.51 | 471 | 1/26/2022 |
1.0.50 | 489 | 1/26/2022 |
1.0.49 | 508 | 1/25/2022 |
1.0.48 | 523 | 1/25/2022 |
1.0.47 | 500 | 1/25/2022 |
1.0.46 | 500 | 1/25/2022 |
1.0.45 | 1,501 | 1/24/2022 |
1.0.44 | 467 | 1/24/2022 |
1.0.43 | 478 | 1/24/2022 |
1.0.42 | 1,054 | 1/21/2022 |
1.0.41 | 499 | 1/21/2022 |
1.0.40 | 489 | 1/21/2022 |
1.0.39 | 466 | 1/21/2022 |
1.0.38 | 483 | 1/21/2022 |
1.0.37 | 490 | 1/19/2022 |
1.0.36 | 499 | 1/19/2022 |
1.0.35 | 507 | 1/19/2022 |
1.0.34 | 470 | 1/19/2022 |
1.0.33 | 484 | 1/19/2022 |
1.0.32 | 1,042 | 1/18/2022 |
1.0.31 | 1,030 | 1/18/2022 |
1.0.30 | 1,007 | 1/17/2022 |
1.0.29 | 477 | 1/15/2022 |
1.0.28 | 1,425 | 1/9/2022 |
1.0.27 | 297 | 12/29/2021 |
1.0.26 | 324 | 12/29/2021 |
1.0.25 | 348 | 12/29/2021 |
1.0.24 | 335 | 12/28/2021 |
1.0.23 | 308 | 12/22/2021 |
1.0.22 | 337 | 12/22/2021 |
1.0.21 | 682 | 12/22/2021 |
1.0.20 | 681 | 12/21/2021 |
1.0.19 | 720 | 12/20/2021 |
1.0.18 | 351 | 12/2/2021 |
1.0.17 | 372 | 12/2/2021 |
1.0.16 | 343 | 12/2/2021 |
1.0.15 | 336 | 12/2/2021 |
1.0.14 | 1,042 | 12/1/2021 |
1.0.13 | 316 | 11/28/2021 |
1.0.12 | 1,606 | 11/26/2021 |
1.0.11 | 327 | 11/22/2021 |
1.0.10 | 430 | 11/18/2021 |
1.0.9 | 464 | 11/18/2021 |
1.0.8 | 413 | 11/14/2021 |
1.0.7 | 381 | 11/13/2021 |