npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wdio/tauri-service

v1.1.0

Published

WebdriverIO service for testing Tauri applications

Readme

@wdio/tauri-service

@wdio/tauri-service Version Downloads

WebdriverIO service for testing Tauri applications on Windows, Linux, and macOS.

Enables cross-platform E2E testing of Tauri apps via the extensive WebdriverIO ecosystem.

Features

  • 🚗 Automatic tauri-driver installation and management
  • 🔧 Automatic Edge WebDriver management on Windows
  • 📦 Automatic Tauri binary path detection
  • 🌐 Cross-platform support (Windows, Linux, macOS)
  • 🔗 Full Tauri API access via browser.tauri.execute()
  • 🧩 Mocking support for Tauri's invoke API
  • 📊 Backend and frontend log capture
  • 🖥️ Multiremote testing support
  • 🏃 Per-worker driver spawning for parallel testing
  • 🌍 Browser mode — test the Tauri frontend in plain Chrome against a Vite dev server, no Tauri binary or driver required

Installation

Install the service via npm:

npm install --save-dev @wdio/tauri-service

Or with pnpm:

pnpm add -D @wdio/tauri-service

Quick Start

Get started in minutes with the Quick Start Guide.

Minimal Configuration

Add to your wdio.conf.ts:

export const config = {
  services: ['@wdio/tauri-service'],

  capabilities: [
    {
      browserName: 'tauri',
      'tauri:options': {
        application: './src-tauri/target/release/my-app.exe'
      }
    }
  ]
};

See Configuration Reference for all options.

Documentation

Getting Started

Reference

Guides

Help & Support

Platform Support

| Platform | Supported | Driver Providers | Notes | |----------|-----------|------------------|-------| | Windows | ✅ Yes | official, crabnebula, embedded | Edge WebDriver auto-managed | | Linux | ✅ Yes | official, crabnebula, embedded | Requires webkit2gtk-driver | | macOS | ✅ Yes | embedded, crabnebula | Native via embedded, or CrabNebula |

See Platform Support for detailed information including distribution support and troubleshooting.

Choosing a driver provider:

  • embedded (recommended) — Native support on all platforms, no external driver needed
  • official — Community driver, Windows/Linux only
  • crabnebula — All platforms, requires subscription (CN_API_KEY for macOS)

Example Projects

Check out the E2E test fixtures in the desktop-mobile repository for complete working examples.

Support

Having trouble? Here are some resources:

  1. Troubleshooting Guide - Solutions for common issues
  2. Platform Support - Platform-specific information
  3. GitHub Issues - Bug reports and feature requests for tauri-service
  4. WebdriverIO Forum - General community help and discussions

Contributing

We welcome contributions! Please see our Development Guide for:

  • Setting up your development environment
  • Running tests
  • Code style guidelines
  • Pull request process

Quick start for contributors:

# Clone and install
git clone https://github.com/webdriverio/desktop-mobile.git
cd desktop-mobile
pnpm install

# Make your changes
# ...

# Run tests
pnpm test

# Submit a pull request

License

MIT License. See LICENSE file for details.

See Also