Amr Bashir 70306dc79b ci: check toml formatting with taplo-cli (#10787) 11 months ago
..
src 5f64ed2b78 support 1.x automation env var in `tauri-driver` (#10738) 11 months ago
.gitignore ad83d41cb5 chore: cleanup and simplify examples (#10743) 11 months ago
CHANGELOG.md 9620c58e5a Apply Version Updates From Current Changes (#10740) 11 months ago
Cargo.lock 9620c58e5a Apply Version Updates From Current Changes (#10740) 11 months ago
Cargo.toml 70306dc79b ci: check toml formatting with taplo-cli (#10787) 11 months ago
LICENSE.spdx 4b2aa35684 Add back WebDriver support (#2324) 4 years ago
LICENSE_APACHE-2.0 4b2aa35684 Add back WebDriver support (#2324) 4 years ago
LICENSE_MIT 4b2aa35684 Add back WebDriver support (#2324) 4 years ago
README.md ab57f9531a chore: run pnpm format on the repo 1 year ago

README.md

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:

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.

Trying it out

Check out the documentation at https://tauri.app/docs/testing/webdriver/introduction, including a small example application with WebDriver tests.