browser_oxide 0.1.3

Stealth headless browser engine in Rust: real HTML/CSS/DOM/JS, V8 via deno_core, own BoringSSL TLS/JA4 fingerprint, no Chromium, no CDP — for anti-bot web scraping, archival, and AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(test)]
mod tests {
    use browser_oxide::Page;

    #[tokio::test]
    #[ignore = "network: live HTTP against sinceyouarrived.world"]
    async fn audit_sinceyouarrived_oxide() {
        let profile = browser_oxide::stealth::presets::chrome_148_macos();
        let mut page = Page::navigate("https://sinceyouarrived.world/taken", profile, 5)
            .await
            .unwrap();

        tokio::time::sleep(std::time::Duration::from_secs(15)).await;

        let r = page.evaluate("document.body.innerText").unwrap();
        println!("SINCEYOUARRIVED OXIDE: {}", r);
    }
}