Mnavigate
Bun

method

WebView.navigate

url: string
): Promise<void>;

Navigate to a URL. Resolves when the main frame's load completes (WKNavigationDelegate didFinishNavigation).

await view.navigate("https://example.com");
await view.navigate("data:text/html,<h1>hello</h1>");