Fichtelcoder

Results 13 comments of Fichtelcoder

You can use [`Page::set_content("")`](https://docs.rs/chromiumoxide/latest/chromiumoxide/page/struct.Page.html#method.set_content) for this. Here is a full example using `tokio`: ```rust use futures::StreamExt; use chromiumoxide::{ browser::{Browser, BrowserConfig}, cdp::browser_protocol::page::PrintToPdfParams, }; #[tokio::main] async fn main() -> Result { let...

I will look into this in about 2 weeks, when I refactor this project a bit. Sadly won't find the time earlier.

@davipk I have looked into this and sadly it does not seem to be possible to integrate this into the demo in a nice way, other than the code becoming...

My target platform is windows 10 (with hardware acceleration). However I tried to target .Net5 (not Framework).

Just because I ran into this several times in the past now. It's basically like @cereal-s suggested on Ubuntu-20.04, but with a twist: ``` wget --no-check-certificate -O - https://apt.llvm.org/llvm-snapshot.gpg.key |...

I think the best solution would be to implement this the same way it is done in Electron.

I think it would also be fine if both options _can_ be enabled and if none are enabled by default (+ the improved error message as mentioned by @SuperCuber). However...

There is also [tinyfiledialogs](https://crates.io/crates/tinyfiledialogs) which is not pure Rust (wraps a C library) but I found it to work reliable. It also shouldn't be too hard to port the underlying...

I like the idea, but please don't use an LLM to generate the text for you. It's hard to read, contains tons of duplication and overall does not convey the...

I am having the exact same issue after the manual installation. If I explicetly add an user in the `.env` file, I can see it being created in the database,...