chaser-oxide 0.2.3

Undetectable browser automation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::test;

#[tokio::test]
async fn test_basic() {
    test(async |browser| {
        let page = browser.new_page("about:blank").await.unwrap();
        page.goto("https://www.google.com").await.unwrap();
        let title = page.get_title().await.unwrap().unwrap();
        assert!(title.contains("Google"));
    })
    .await;
}