dependabot[bot] 253a661516 chore(deps): bump mio from 0.8.8 to 0.8.11 in /tooling/webdriver (#9077) hace 1 año
..
src 4b75834a41 chore: update license headers 2024 (#9043) hace 1 año
.gitignore 4b2aa35684 Add back WebDriver support (#2324) hace 4 años
CHANGELOG.md 88a1dd17c3 Apply Version Updates From Current Changes (#8638) hace 1 año
Cargo.lock 253a661516 chore(deps): bump mio from 0.8.8 to 0.8.11 in /tooling/webdriver (#9077) hace 1 año
Cargo.toml 88a1dd17c3 Apply Version Updates From Current Changes (#8638) hace 1 año
LICENSE.spdx 4b2aa35684 Add back WebDriver support (#2324) hace 4 años
LICENSE_APACHE-2.0 4b2aa35684 Add back WebDriver support (#2324) hace 4 años
LICENSE_MIT 4b2aa35684 Add back WebDriver support (#2324) hace 4 años
README.md ab57f9531a chore: run pnpm format on the repo hace 1 año

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.