undetected-chromedriver

Crates.ioundetected-chromedriver
lib.rsundetected-chromedriver
version0.1.2
sourcesrc
created_at2023-06-24 13:38:15.020096
updated_at2023-09-13 14:37:56.30901
descriptionAn undetected implementation of thirtyfour.
homepage
repositoryhttps://github.com/Ulyssedev/Rust-undetected-chromedriver
max_upload_size
id898955
size77,932
Ulysse (Ulyssedev)

documentation

README

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"]
Commit count: 16

cargo fmt