Vrtgs
Vrtgs
Looking into the implementation of from_utf8 this should be quite easy to add ```rs #[inline] pub fn from_utf8(input: &[u8]) -> Result { unsafe { validate_utf8_basic(input)?; Ok(from_utf8_unchecked(input)) } } ``` and...
this should implement #73
opps forgot to make a new branch, sorry for the extra pushes
Any updates on this?
are you using selenium to access apis perhaps, if so you should look into [reqwest](https://docs.rs/reqwest/latest/reqwest/)? because it isn't meant to do that, most sites use cookies for auth, because that...
> I dont call driver.quic() the chromuim window shutdown when code finished let ret = driver.goto(url).await; > > But when I user thrityfour 0.32.0 the chromuim windows is still there...
> I use this code to fill a login box in a web page: use std::error::Error; use thirtyfour::prelude::*; > > #[tokio::main] async fn main() -> Result { // define the...
can you try doing this?: ```rs use std::error::Error; use thirtyfour::prelude::*; #[tokio::main(flavor = "current_thread")] async fn main() -> Result { // define the browser options let mut caps = DesiredCapabilities::chrome(); //...
this resolves #588
Alright, just wondering how do you plan on benchmarking?