OpenQA.Selenium.Winium
1.0.0.1
See the version list below for details.
dotnet add package OpenQA.Selenium.Winium --version 1.0.0.1
NuGet\Install-Package OpenQA.Selenium.Winium -Version 1.0.0.1
<PackageReference Include="OpenQA.Selenium.Winium" Version="1.0.0.1" />
paket add OpenQA.Selenium.Winium --version 1.0.0.1
#r "nuget: OpenQA.Selenium.Winium, 1.0.0.1"
// Install OpenQA.Selenium.Winium as a Cake Addin #addin nuget:?package=OpenQA.Selenium.Winium&version=1.0.0.1 // Install OpenQA.Selenium.Winium as a Cake Tool #tool nuget:?package=OpenQA.Selenium.Winium&version=1.0.0.1
Winium.WebDriver for .NET ![GitHub license](https://img.shields.io/badge/license-MPL 2.0-blue.svg?style=flat-square)
Winium.WebDriver is an extension of WebDriver C# bindings.
This is an extension of WebDriver C# bindings. Provides a mechanism to write tests using Winium.Desktop, Winium.StoreApps or winphonedriver.
Winium.WebDriver retains the functionality of common driver and has specific methods for interaction with the Winium Driver.
Quick Start Add reference to Winium.WebDriver in UI test project.
Initialize an instance of specific for Desktop, StoreApps, Silverlight Options class.
[DesktopOptions] for example:
var options = new DesktopOptions { ApplicationPath = @"C:\Windows\System32\notepad.exe" }; Create the instance of the [WebDriver] class.
Use default constructor:
var driver = new WiniumDriver(options); Use the native WiniumDriver executable:
var service = WiniumDriverService.CreateDesktopService("path_to_driver_executible_folder");
var driver = new WiniumDriver(service, options, TimeSpan.FromMinutes(30)); Contributing Contributions are welcome!
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. Fork the repository to start making your changes to the master branch (or branch off of it). We recommend to write a test which shows that the bug was fixed or that the feature works as expected. Send a pull request and bug the maintainer until it gets merged and published. 😃 Contact Have some questions? Found a bug? Create new issue or contact us at mario.mikschovsky65@gmail.com
License Winium is released under the MPL 2.0 license. See LICENSE for details.
Learn more about Target Frameworks and .NET Standard.
-
- Selenium.WebDriver (= 3.141.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v0.1.1
- updated selenium dependency to version 3.141.0
- Add constructor using specifed remote address