pythcoiner
pythcoiner
> @edouardparis Could it be possible to start the Iced application inside a unit test, and send signals to it to simulate a user clicking on a button? This would...
i'll try to play with that when i got some time, i've some way in mind how to use it.
maybe we can also have a look to a combination of these 3 crates: - [autopilot](https://crates.io/crates/autopilot) - [tesseract bindings](https://crates.io/crates/rusty-tesseract) - [open-cv bindings](https://crates.io/crates/opencv)
I had a check today about this, detect buttons/labels positions by their text is doable using: - `xwininfo` to detect the window position by its name - `rusty-tesseract` for OCR...
i think if we want do something like this we should add some features to GUI: - Logging or output (to a named pipe?) updates messages, at least for some...
you can have a look there on the [(RUST) test framework prototype](https://github.com/pythcoiner/gui_test_framework) i've made
work a bit on this today, i was getting some bad result doing directly OCR w/ tesseract on the raw screenshot so i changed a bit the flow: - implement...
Here notes from discord for record: idea it's call liana w/ a ENV VAR to set the custom theme (custom theme use a different color for each different kind of...
having a lot issues getting a good OCR result using `tesseract` on cropped images, i give a try to [ocrs](https://github.com/robertknight/ocrs), that give very good result (even `spaces`, `special chars` and...
note to myself: ``` I think what's worth automating is the "trivial" tests. Usually when a release comes out we extensively test the new features but we gloss over the...