mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 23:14:37 +00:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
/**
|
|
* Platform detection utilities for cross-platform E2E tests.
|
|
*
|
|
* The harness was previously split between Appium Mac2 (accessibility tree)
|
|
* and tauri-driver (DOM). It is now unified onto **Appium Chromium driver
|
|
* attached to CEF's CDP port** on all three platforms (macOS / Linux /
|
|
* Windows). Every session exposes the full DOM and supports W3C
|
|
* `executeScript`, so the legacy branching collapses to a single backend.
|
|
*
|
|
* The remaining detection functions are kept as a shim for specs that still
|
|
* branch on DOM execution support; they always take the DOM-capable path now.
|
|
*/
|
|
|
|
/**
|
|
* Always true — the unified Chromium-driver session exposes the WebView DOM
|
|
* exactly like the old tauri-driver path did. Specs that gated DOM work
|
|
* behind `if (isTauriDriver())` now run that work on every platform.
|
|
*/
|
|
export function isTauriDriver(): boolean {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Always true — Chromium driver is a full W3C WebDriver and supports
|
|
* `browser.execute(...)` on every platform.
|
|
*/
|
|
export function supportsExecuteScript(): boolean {
|
|
return true;
|
|
}
|