tree: 1ce80158dc9f03d5431ac932999f22e543c10daf
  1. build/
  2. buildTransitive/
  3. README.md
dotnet/src/webdriver/assets/nuget/README.md

Selenium.WebDriver

.NET language bindings for Selenium WebDriver. Selenium automates browsers for testing and web-based task automation.

Targets .NET Framework 4.6.2, .NET Standard 2.0, and .NET 8.0.

Installation

dotnet add package Selenium.WebDriver

Quick Start

using System;
using OpenQA.Selenium.Chrome;

using var driver = new ChromeDriver();
driver.Url = "https://www.selenium.dev";
Console.WriteLine(driver.Title);

Selenium Manager automatically handles browser driver installation — no manual driver setup required.

Documentation

Support

Contributing

Contributions are welcome via GitHub pull requests. See the source code for this binding.

Links

License

Licensed under the Apache License 2.0.