Selenium.WebDriver.BiDi.Cdp 0.2.1696802

dotnet add package Selenium.WebDriver.BiDi.Cdp --version 0.2.1696802
                    
NuGet\Install-Package Selenium.WebDriver.BiDi.Cdp -Version 0.2.1696802
                    
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.WebDriver.BiDi.Cdp" Version="0.2.1696802" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Selenium.WebDriver.BiDi.Cdp" Version="0.2.1696802" />
                    
Directory.Packages.props
<PackageReference Include="Selenium.WebDriver.BiDi.Cdp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Selenium.WebDriver.BiDi.Cdp --version 0.2.1696802
                    
#r "nuget: Selenium.WebDriver.BiDi.Cdp, 0.2.1696802"
                    
#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.
#:package Selenium.WebDriver.BiDi.Cdp@0.2.1696802
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Selenium.WebDriver.BiDi.Cdp&version=0.2.1696802
                    
Install as a Cake Addin
#tool nuget:?package=Selenium.WebDriver.BiDi.Cdp&version=0.2.1696802
                    
Install as a Cake Tool

Strongly-typed access to the Chrome DevTools Protocol (CDP) for .NET, over the WebDriver BiDi transport, extending Selenium WebDriver.

Quick Start

using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using Selenium.WebDriver.BiDi.Cdp;

await using var driver = new ChromeDriver(new ChromeOptions { UseWebSocketUrl = true });
await using var bidi = await driver.AsBiDiAsync();

var tab = (await bidi.BrowsingContext.GetTreeAsync()).Contexts[0].Context;
var cdp = await tab.AsCdpAsync();

var result = await cdp.Page.CaptureScreenshotAsync();

See the docs for full documentation.

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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
0.2.1696802 42 9/12/2026
0.2.1695952 40 9/11/2026
0.2.1695166 51 9/10/2026
0.2.1694333 54 9/10/2026
0.1.1694333 54 9/9/2026
0.1.1692173 92 9/4/2026
0.1.1691330 101 9/3/2026
0.1.1687809 106 8/28/2026
0.1.1686980 105 8/27/2026
0.1.1684464 136 8/22/2026
0.1.1683682 109 8/21/2026
0.1.1682007 120 8/19/2026
0.1.1681094 122 8/18/2026
0.1.1680125 139 8/15/2026
0.1.1679354 123 8/14/2026
0.1.1678596 120 8/13/2026
0.1.1677763 117 8/12/2026
0.1.1676914 105 8/11/2026
0.1.1676105 108 8/8/2026
0.1.1674729 105 8/6/2026
Loading failed

This release adds support for 1696802 of the Chrome DevTools Protocol (CDP).