How to change the URL at runtime?

You can change a webview's URL at runtime by calling IWebView.LoadUrl() in a script, like this:

webViewPrefab.WebView.LoadUrl(yourNewUrl);

For tips on how to get a reference to your scene's WebViewPrefab or CanvasWebViewPrefab in a script, please see this article.