rustwright-core 0.1.1

Rust CDP core for a Python Playwright-compatible automation API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Rustwright for .NET

Rustwright is a synchronous .NET 8 binding for Rustwright's Rust-powered Chromium CDP engine. The package includes the matching native library for supported macOS, Linux, and Windows runtime identifiers.

```csharp
using Rustwright;

using var browser = Chromium.Launch(new LaunchOptions { Headless = true });
using var page = browser.NewPage();
page.Goto("data:text/html,<title>Hello from Rustwright</title>");
Console.WriteLine(page.Title());
```

For source builds, API details, and the binding runner, see the [repository](https://github.com/Skyvern-AI/rustwright/tree/main/csharp).