#chromedriver #chrome #testing #thirtyfour #browser #headless #undetected

undetected-chromedriver

An undetected implementation of thirtyfour

3 releases

0.1.2 Sep 13, 2023
0.1.1 Sep 6, 2023
0.1.0 Jun 24, 2023

#3 in #thirtyfour

Download history 22/week @ 2024-02-17 44/week @ 2024-02-24 13/week @ 2024-03-02 46/week @ 2024-03-09 108/week @ 2024-03-16 27/week @ 2024-03-23 58/week @ 2024-03-30 63/week @ 2024-04-06 139/week @ 2024-04-13

297 downloads per month

MIT license

66KB
225 lines

rust undetected chrome driver logo
Rust undetected chromedriver

A rust implementation of ultrafunkamsterdam's undetected-chromedriver library based on thirtyfour

Installation

To use this library, you will need to have Rust and Cargo installed on your system. You can then add the following line to your Cargo.toml file:

[dependencies]
undetected-chromedriver = "0.1.2"

Usage

Here's an example of how you can use the undetected chromedriver in your Rust project:

use undetected_chromedriver::chrome;
use tokio;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let driver = chrome().await?;

    driver.goto("https://www.rust-lang.org/").await?;

    let title = driver.title().await?;
    println!("Title: {}", title);

    driver.quit().await?;

    Ok(())
}

Note: chrome needs to be installed on the system before using undetected chromedriver

Headless mode

You can run the chromedriver in headless mode by using xvfb-run. This will require you to have xvfb installed on your system.

Docker

A docker image is provided with chrome and xvfb installed. You can use it as follows:

FROM rust:latest as builder
COPY ./src ./src
COPY ./Cargo.toml ./Cargo.toml
COPY ./Cargo.lock ./Cargo.lock
RUN cargo build --release

FROM ghcr.io/ulyssedev/rust-undetected-chromedriver:latest
COPY --from=builder /target/release/binary /home/apps/binary
CMD ["/home/apps/binary"]

Dependencies

~17–34MB
~510K SLoC