Rust-undetected-chromedriver
Rust-undetected-chromedriver copied to clipboard
A rust implementation of ultrafunkamsterdam's undetected-chromedriver library based on thirtyfour
Very much a non issue but I'm confused as to where it's checking for chromedriver as it doesn't seem to be detecting it when it's installed in the regular chrome...
It is detected with chrome 116.0.5845.110 It looks like https://github.com/ultrafunkamsterdam is having the same issue too. ```rs use undetected_chromedriver::chrome; use tokio; #[tokio::main] async fn main() -> Result { let driver...
Just a quick update, Added support for Apple Silicon. While i was doing it I also adjusted the base URL to the latest as i was getting errors on the...
I had to change the default capabilities for the WebDriver but the crate does not provide this function. Renamed the ```chrome()``` function to ```chrome_caps``` and made it accept ```ChromeCapabilities``` as...
refactor
This is a code refactor(with personal taste) PR. 1. fix https://github.com/Ulyssedev/Rust-undetected-chromedriver/issues/5 2. add mac aarch64 3. remove all `unwrap`s 4. `cargo fmt` and `cargo clippy` 5. favour `tracing` over `println!`
Hello! Just wanted to start off and say that I love the ambition of this project here. I understand that this project is still early; however, I certainly could have...