Info
Version: | 1.0.6 |
Author(s): | Volodymyr Romanyshyn |
Last Update: | Tuesday, October 1, 2019 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/VolodymyrRomanyshyn/SeleniumFramework |
NuGet Url: | https://www.nuget.org/packages/SeleniumFramework |
Install
Install-Package SeleniumFramework
dotnet add package SeleniumFramework
paket add SeleniumFramework
SeleniumFramework Download (Unzip the "nupkg" after downloading)
Dependencies
- DotNetSeleniumExtras.PageObjects(>= 3.11.0)
- DotNetSeleniumExtras.PageObjects.Core(>= 3.12.0)
- DotNetSeleniumExtras.WaitHelpers(>= 3.11.0)
- NLog(>= 4.6.7)
- Selenium.Support(>= 3.141.0)
- Selenium.WebDriver(>= 3.141.0)
The Framework extends PageFactory allows to use Custom elements and Lists of elements example:
[Id("UserName")] public TextInputField UserName;
[XPath("YourXPath")] public TextInputField Password;
[Id("btnLogin")] public Button Login;.