From 8d8fe3437d262f4b5a920078d422fcf193a325b5 Mon Sep 17 00:00:00 2001 From: Mateusz Kurowski Date: Thu, 27 Jun 2024 10:05:53 +0200 Subject: [PATCH] webdriver: WebKitWebDriver: browsername should be an empty string to avoid `Failed to match capabilities` fixes https://github.com/tauri-apps/tauri/issues/8828 --- docs/guides/testing/webdriver/example/selenium.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/testing/webdriver/example/selenium.md b/docs/guides/testing/webdriver/example/selenium.md index f7491d458fa..eca2e4a2d86 100644 --- a/docs/guides/testing/webdriver/example/selenium.md +++ b/docs/guides/testing/webdriver/example/selenium.md @@ -165,7 +165,7 @@ before(async function () { const capabilities = new Capabilities() capabilities.set('tauri:options', { application }) - capabilities.setBrowserName('wry') + capabilities.setBrowserName('') // start the webdriver client driver = await new Builder()