The task is as follows: you need to force WebView display the page after changing its content by the server. For example, when there is an expanding list on the page (implemented using js on the server side), then when you click on it, no action occurs when the list becomes active (expands) in a regular browser and we can already interact with its elements. This is necessary in order to parse the elements added to the page by the server.
WebView is invoked as follows:
webview = new WebView(); webview.getSettings().setJavaScriptEnabled(true); webview.addJavascriptInterface(new MyJavaScriptInterface(), "HTMLOUT"); webview.setWebViewClient(wc); webview.setWebChromeClient(wvc); webview.loadUrl("http://klavogonki.ru/gamelist"); The list of games on the site is not loaded.

WebView- Vladyslav Matviienko