Skip to content

Latest commit

 

History

History
484 lines (360 loc) · 10.7 KB

File metadata and controls

484 lines (360 loc) · 10.7 KB

Quick Start Guide

Get up and running with WebdriverIO and Tauri E2E testing in minutes.

Prerequisites

Required Software

  1. Node.js 18+ - Download from nodejs.org

  2. Rust Toolchain - Required for building Tauri apps and tauri-driver

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  3. Tauri CLI - Install globally or as dev dependency

    npm install -g @tauri-apps/cli
    # or
    cargo install tauri-cli

Platform-Specific Requirements

Windows

Linux

  • WebKitGTK Development Libraries - Install WebKitWebDriver
    # Debian/Ubuntu
    sudo apt-get install -y webkit2gtk-driver
    
    # Fedora 40+
    sudo dnf install -y webkit2gtk-driver
    
    # Arch Linux
    sudo pacman -S webkit2gtk-4.1
    
    # Void Linux
    sudo xbps-install -y webkit2gtk-devel

See Platform Support for detailed distribution support information.

macOS

Supported - Use the embedded WebDriver provider (driverProvider: 'embedded') for native macOS testing without external dependencies. See Platform Support for details.

Setting Up a Tauri App

Fastest Way: Use Tauri CLI

npm create tauri-app@latest

Follow the prompts and select your preferred frontend framework.

Manual Setup

Create a minimal Tauri app:

mkdir my-tauri-app
cd my-tauri-app

# Create frontend (use any framework or plain HTML)
mkdir src
echo '<h1>Hello, Tauri!</h1>' > src/index.html

# Create Rust backend
cargo init --name my_app src-tauri
cd src-tauri

# Add Tauri to Cargo.toml
# [dependencies]
# tauri = { version = "2.9", features = ["shell-open"] }
# tauri-build = "2.0"

Essential Files

Create the minimal required files for a Tauri app:

src-tauri/src/main.rs

#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]

fn main() {
    tauri::Builder::default()
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

src-tauri/tauri.conf.json

{
  "$schema": "https://schema.tauri.app/config/2",
  "productName": "my-app",
  "version": "0.1.0",
  "identifier": "com.mycompany.myapp",
  "build": {
    "frontendDist": "../src",
    "beforeDevCommand": "echo 'dev server running'",
    "beforeBuildCommand": "echo 'building frontend'"
  },
  "app": {
    "withGlobalTauri": true,
    "windows": [
      {
        "title": "My App",
        "width": 800,
        "height": 600
      }
    ]
  }
}

src-tauri/Cargo.toml - Add:

[dependencies]
tauri = { version = "2.9", features = [] }
tauri-plugin-wdio = { path = "../../packages/tauri-plugin" }

[build-dependencies]
tauri-build = "2.0"

src-tauri/build.rs

fn main() {
    tauri_build::build()
}

Tauri Plugin Setup

⚠️ The tauri-plugin-wdio is required for testing - Skip this section only if you want basic WebDriver operations without mocking or log capture.

Complete Plugin Setup

  1. Already added to Cargo.toml (see above)

  2. Register in src-tauri/src/main.rs

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_wdio::init())  // Add this line
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}
  1. Create src-tauri/capabilities/default.json
{
  "identifier": "default",
  "windows": ["main"],
  "permissions": [
    "core:default",
    "core:window:default",
    "wdio:default"
  ]
}
  1. Import frontend plugin in src/index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>My App</title>
  </head>
  <body>
    <h1>Hello, Tauri!</h1>

    <!-- Import WebdriverIO Tauri plugin (required for testing) -->
    <script type="module">
      import '@wdio/tauri-plugin';
    </script>
  </body>
</html>

For detailed plugin setup and troubleshooting, see Plugin Setup.

Building the Tauri App

# Build for release (required for testing with WebdriverIO)
cd src-tauri
cargo build --release

On macOS/Linux, you'll also need to give the app executable permissions:

chmod +x target/release/my_app  # Linux/macOS
# or on Windows:
# target\release\my_app.exe

WebdriverIO Installation

1. Install WebdriverIO

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

2. Initialize Configuration

Use the WebdriverIO CLI setup wizard:

npx wdio config

Or manually create wdio.conf.ts:

export const config = {
  runner: 'local',
  specs: ['./test/specs/**/*.spec.ts'],
  maxInstances: 1,

  // Tauri service configuration
  services: [['@wdio/tauri-service', {
    appBinaryPath: './src-tauri/target/release/my-app.exe', // Adjust for your OS/app name
    driverProvider: 'embedded',  // Use embedded WebDriver (recommended, no external drivers needed)
    // driverProvider: 'official',  // Use external tauri-driver (explicit opt-in)
    // driverProvider: 'crabnebula',  // Use CrabNebula (requires paid API key)
  }]],

  // Capabilities
  capabilities: [{
    browserName: 'tauri',
    'tauri:options': {
      application: './src-tauri/target/release/my-app.exe',  // Path to built binary
    },
  }],

  // Logging
  logLevel: 'info',
  bail: 0,
  baseUrl: 'http://localhost:4444',
  waitforTimeout: 10000,
  connectionRetryTimeout: 90000,
  connectionRetryCount: 3,

  // Test configuration
  framework: 'mocha',
  mochaOpts: {
    ui: 'bdd',
    timeout: 60000,
  },
};

3. Create a Test

Create test/specs/example.spec.ts:

describe('My Tauri App', () => {
  it('should display hello world', async () => {
    // Wait for the app to fully load
    await browser.pause(500);

    // Find and check a heading
    const heading = await browser.$('h1');
    expect(await heading.getText()).toBe('Hello, Tauri!');
  });

  it('should execute Tauri commands', async () => {
    // Execute JavaScript in the Tauri frontend context with access to Tauri APIs
    const result = await browser.tauri.execute(({ core }) => {
      return core.invoke('get_platform_info');
    });

    console.log('Platform info:', result);
  });

  it('should mock Tauri commands', async () => {
    // Mock a Tauri command
    const mock = await browser.tauri.mock('get_user');
    await mock.mockReturnValue({ id: 1, name: 'Test User' });

    // Execute code that uses the mocked command
    const user = await browser.tauri.execute(({ core }) => {
      return core.invoke('get_user');
    });

    expect(user).toEqual({ id: 1, name: 'Test User' });
  });
});

Running Tests

Run All Tests

npx wdio run wdio.conf.ts

Run Specific Test File

npx wdio run wdio.conf.ts --spec test/specs/example.spec.ts

Run in Watch Mode

npx wdio run wdio.conf.ts --watch

Run with Debug Logging

npx wdio run wdio.conf.ts --logLevel debug

Troubleshooting

"Cannot find module '@wdio/tauri-plugin'"

The frontend plugin import is failing. Make sure:

  1. Install the peer dependencies:

    npm install --save-dev @wdio/tauri-plugin
  2. The import is in your HTML/JS entry point before tests run

"tauri-driver not found" or "No driverProvider configured"

The service couldn't determine which driver to use, or couldn't find tauri-driver. Solutions:

  1. Use embedded provider (no external driver needed):

    driverProvider: 'embedded'

    Requires tauri-plugin-wdio-webdriver in your Tauri app. On macOS this is auto-detected.

  2. Install tauri-driver manually (if using driverProvider: 'official'):

    cargo install tauri-driver
  3. Or enable auto-install in wdio.conf.ts:

    driverProvider: 'official',
    autoInstallTauriDriver: true

"Application not found at path"

The appBinaryPath is wrong. Verify:

  1. You built the app in release mode: cargo build --release
  2. The path exists: ./src-tauri/target/release/my-app.exe
  3. Update the path in wdio.conf.ts if needed

Tests timeout on Windows

Edge WebDriver version mismatch. The service auto-manages this, but if issues persist:

  1. See Edge WebDriver (Windows)
  2. Check your Edge version: Settings → About Microsoft Edge
  3. Verify the driver version matches

"Test failed with Firefox" Error

Make sure you're using browserName: 'tauri' in capabilities, not other browsers.

Next Steps

  1. Add more tests - See Usage Examples for patterns
  2. Advanced features - Read about Mocking and Logging
  3. Configure the service - See Configuration for all options
  4. Debug issues - Check Troubleshooting

Common Patterns

Test Custom Tauri Commands

it('should call custom commands', async () => {
  const result = await browser.tauri.execute(({ core }) => {
    return core.invoke('my_custom_command', { param: 'value' });
  });

  expect(result).toBeDefined();
});

Capture Logs

Enable log capture in wdio.conf.ts:

services: [['@wdio/tauri-service', {
  captureBackendLogs: true,
  captureFrontendLogs: true,
  backendLogLevel: 'debug',
  frontendLogLevel: 'debug',
}]],

Multiremote Testing

Run multiple instances of your app:

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

CI/CD Integration

Example GitHub Actions workflow:

name: E2E Tests
on: [push, pull_request]

jobs:
  test:
    runs-on: windows-latest  # or ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '18'
      - uses: dtolnay/rust-toolchain@stable

      - name: Install dependencies
        run: npm install

      - name: Build Tauri app
        run: npm run tauri build

      - name: Run tests
        run: npm run test:e2e

See Also