sounds like userscripting with extra steps
Also, here is another cool project that mounts your browser tabs as a filestructure https://github.com/osnr/TabFS
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
sounds like userscripting with extra steps
Also, here is another cool project that mounts your browser tabs as a filestructure https://github.com/osnr/TabFS
Cool project! I'll check it out.
Regarding userscripting, from the F.A.Q.:
Why use an external automation tool (Playwright) instead of a browser extension?
While Beachpatrol allows to control the browser from both the OS and from a browser extension, our priority was the OS. Therefore, something like Playwright was the natural choice.
Furthermore, while controlling the browser from an extensions is possible, Manifest v3 removed the ability to execute third-party strings of code. Popular automation extensions like Greasemonkey and Tampermonkey could also be affected by Manifest v3. The alternative is to embed the code into the extension, but that would requires re-bundling the extensions after every change. Other tricks do exist to make this approach work, and there is some hope for future Manifest v3 solutions, but this path is certainly tricky.
It is more likely that Selenium and related tools will continue to work in the foreseeable future given the business demand for traditional browser testing.
Yeah, just use firefox.
This sounds a lot like Selenium
How have I never heard of this! This is awesome!
I never even thought that automating a browser would be a thing!
It's based on Puppeteer which has been around awhile. It's pretty useful for automating UI tests.
Amazing
Sounds cool but I didn't really get how it works from the README, or I guess didn't get a proper example. They showed that you can automagically log into website but that can also just be done with a password manager.
Unlike a password manager that just logs you in, Beachpatrol can run any automation task, like checking your email, downloading files, or filling out forms. You have to create Playwright scripts for these tasks and run them from a shell command. There is an example script already in the commands folder, which you can run with the command beackmsg smoke-test
. The sky is the limit, basically.
Thanks, I missed the example. Tbh I think advertising "checking your email" sounds kinda stupid, people interested in this tool will probably use email clients and other software which is specifically designed for auto-email stuff.