Selenium.Essentials 1.0.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Selenium.Essentials --version 1.0.3.1
NuGet\Install-Package Selenium.Essentials -Version 1.0.3.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Selenium.Essentials" Version="1.0.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Selenium.Essentials --version 1.0.3.1
#r "nuget: Selenium.Essentials, 1.0.3.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Selenium.Essentials as a Cake Addin
#addin nuget:?package=Selenium.Essentials&version=1.0.3.1

// Install Selenium.Essentials as a Cake Tool
#tool nuget:?package=Selenium.Essentials&version=1.0.3.1

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 Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.28 309 3/10/2024
1.0.5.27 256 3/10/2024
1.0.5.26 1,224 11/22/2023
1.0.5.25 1,043 10/18/2023
1.0.5.24 923 10/17/2023
1.0.5.23 907 10/17/2023
1.0.5.22 1,011 10/16/2023
1.0.5.21 903 10/16/2023
1.0.5.20 929 10/13/2023
1.0.5.19 941 10/11/2023
1.0.5.18 992 10/10/2023
1.0.5.17 1,009 9/29/2023
1.0.5.16 1,146 9/6/2023
1.0.5.15 2,165 2/14/2023
1.0.5.14 1,722 11/21/2022
1.0.5.13 1,423 11/20/2022
1.0.5.12 1,470 11/15/2022
1.0.5.11 1,689 10/16/2022
1.0.5.10 2,169 9/1/2022
1.0.5.8 3,044 5/25/2022
1.0.5.6 7,270 4/12/2022
1.0.5.5 1,716 4/6/2022
1.0.5.4 1,593 4/5/2022
1.0.5.3 1,689 4/4/2022
1.0.5.2 1,798 3/20/2022
1.0.5.1 1,907 1/9/2022
1.0.5 1,564 12/31/2021
1.0.4.1 2,615 7/3/2021
1.0.4 1,544 7/3/2021
1.0.3.1 1,713 6/14/2021
1.0.3 1,555 6/14/2021
1.0.2.1 12,857 10/15/2020
1.0.2 3,313 11/3/2019
1.0.1 1,714 10/6/2019
1.0.0 1,721 10/6/2019

Release 1.0.3.1
- Upgrade few dependent packages

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