How-to guides for accessing native browser APIs.
string Reponse = await JSRuntime.InvokeAsync<string>("Prompt", "Prompt label text.", "Optional placeholder value");
bool Reponse = await JSRuntime.InvokeAsync<bool>("Confirm", "Confirm label text.");
JSRuntime.InvokeVoidAsync("FocusElement", ".query-selector-string");
JSRuntime.InvokeVoidAsync("SetTitle", "Custom document title");