| Crates.io | tauri-driver |
| lib.rs | tauri-driver |
| version | 2.0.4 |
| created_at | 2021-06-23 14:01:32.959763+00 |
| updated_at | 2025-04-15 18:23:02.686392+00 |
| description | Webdriver server for Tauri applications |
| homepage | https://tauri.app |
| repository | https://github.com/tauri-apps/tauri |
| max_upload_size | |
| id | 413937 |
| size | 41,584 |
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:
WebKitWebDrivernote: 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.
You can install tauri-driver using Cargo:
cargo install tauri-driver --locked
Check out the documentation at https://tauri.app/develop/tests/webdriver/, including a small example application with WebDriver tests.