* fix: CEF CI * fmt * update to rust 1.88, edition 2024 * install x86_64-apple-darwin * linux clippy * fix --all-features * more all-features fixes * install x86 apple * fix windows * fix doc tests * skip --all-featuress test for android and ios * more clippy fixes * install target * fix build, clippy * export cef for tests * pin version * fix arg
tauri-driver (pre-alpha)
Cross-platform WebDriver server for Tauri applications.
This is a WebDriver Intermediary Node that wraps the native WebDriver server
for platforms that Tauri supports. Your WebDriver client will connect to the
running tauri-driver server, and tauri-driver will handle starting the
native WebDriver server for you behind the scenes. It requires two separate
ports to be used since two distinct WebDriver Remote Ends run.
You can configure the ports used with arguments when starting the binary:
--port(default:4444)--native-port(default:4445)
Supported platforms:
- Linux via
WebKitWebDriver - Windows via Microsoft Edge Driver
- [Todo] macOS via Appium Mac2 Driver (probably)
note: the (probably) items haven't been proof-of-concept'd yet, and if it is not possible to use the listed native webdriver, then a custom implementation will be used that wraps around wry.
Installation
You can install tauri-driver using Cargo:
cargo install tauri-driver --locked
Trying it out
Check out the documentation at https://tauri.app/develop/tests/webdriver/, including a small example application with WebDriver tests.