Selenium.Essentials
1.0.3
See the version list below for details.
dotnet add package Selenium.Essentials --version 1.0.3
NuGet\Install-Package Selenium.Essentials -Version 1.0.3
<PackageReference Include="Selenium.Essentials" Version="1.0.3" />
paket add Selenium.Essentials --version 1.0.3
#r "nuget: Selenium.Essentials, 1.0.3"
// Install Selenium.Essentials as a Cake Addin
#addin nuget:?package=Selenium.Essentials&version=1.0.3
// Install Selenium.Essentials as a Cake Tool
#tool nuget:?package=Selenium.Essentials&version=1.0.3
Build Selenium web automation test using advanced web controls with wrappers and plenty of extensions to fasten your automation development time. Focus more on script logic with better consistent script execution, less maintenance, no hardwaits, with improved script execution performance and integrated Api testing framework.
Selenium provides only option to create only a single generic control which is called the IWebElement. Imagine if you have option to declare controls which resemble the html elements and provide its functionality, for example, Checkbox, Textbox, Button. Selenium Essentials provide new custom controls giving meaning to your page objects and making it more readable. Every control is defined from a BaseControl which has a set of definitions applicable to all controls as well as its custom actions.
For example, Checkbox control will have all properties of the BaseControl and also defines Check() which ticks the checkbox in the UI, UnCheck() which unticks the checkbox, IsChecked returns a bool value based on the control is Checked or Unchecked reading from the UI. The Custom control also expose the underlying IWebElement as a property used by Selenium, in case you need to do any operations on top of this.
There are plenty of Wait operation defined on the base control which flows through all the custom controls. There are different overrides to the wait operation where you can control the time to wait, whether to throw exception if fails, message for assertions when the waits are used for assert operations. Some custom control overrides the default wait to give a better meaning.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- FluentAssertions (>= 5.10.3)
- HtmlAgilityPack (>= 1.11.34)
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Win32.Registry (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.1)
- Pj.Library (>= 1.0.0)
- Pj.Library.ThirdParty (>= 1.0.0)
- Selenium.Support (>= 3.141.0)
- Selenium.WebDriver (>= 3.141.0)
- System.ValueTuple (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.5.14 | 315 | 11/21/2022 |
1.0.5.13 | 145 | 11/20/2022 |
1.0.5.12 | 164 | 11/15/2022 |
1.0.5.11 | 301 | 10/16/2022 |
1.0.5.10 | 417 | 9/1/2022 |
1.0.5.8 | 1,117 | 5/25/2022 |
1.0.5.6 | 2,333 | 4/12/2022 |
1.0.5.5 | 413 | 4/6/2022 |
1.0.5.4 | 375 | 4/5/2022 |
1.0.5.3 | 398 | 4/4/2022 |
1.0.5.2 | 460 | 3/20/2022 |
1.0.5.1 | 628 | 1/9/2022 |
1.0.5 | 315 | 12/31/2021 |
1.0.4.1 | 1,346 | 7/3/2021 |
1.0.4 | 393 | 7/3/2021 |
1.0.3.1 | 405 | 6/14/2021 |
1.0.3 | 345 | 6/14/2021 |
1.0.2.1 | 7,296 | 10/15/2020 |
1.0.2 | 1,634 | 11/3/2019 |
1.0.1 | 455 | 10/6/2019 |
1.0.0 | 459 | 10/6/2019 |
Release 1.0.3
- All extensions and helpers are now referenced from Pj packages
- Usage of extensions are helpers should be followed by adding using Pj.Library to the class files
Release 1.0.2.1
Fix: Element wait throws exception when the element is not available
Feat: Use cache while loading excel data to improve the performace and to support multi worksheet loads from same workbook
Feat: Web driver extension - Switch window handle