在網站上的文字框中輸入文字

使用 .innerText 設定值

這是在 Bing 網站上的搜尋框中輸入文字的程式碼示例

private async void EnterTextAsync(string enterText)
{
    var functionString = string.Format(@"document.getElementsByClassName('b_searchbox')[0].innerText = '{0}';", enterText);
    await webView.InvokeScriptAsync("eval", new string[] { functionString });
}