OpenQA.Selenium.Winium 1.0.0.1

There is a newer version of this package available.
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
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="OpenQA.Selenium.Winium" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenQA.Selenium.Winium --version 1.0.0.1
#r "nuget: OpenQA.Selenium.Winium, 1.0.0.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 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.

There are no supported framework assets in this 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.0.4 152,948 2/4/2020
1.0.0.3 917 2/4/2020
1.0.0.2 787 1/22/2020
1.0.0.1 1,268 1/22/2020

v0.1.1
- updated selenium dependency to version 3.141.0
- Add constructor using specifed remote address