I need to load a web application inside WebView and need to click on a certain button / or perform UI automation,
Is it possible to do that?
It is part of the android application, not testing.
I need to load a web application inside WebView and need to click on a certain button / or perform UI automation,
Is it possible to do that?
It is part of the android application, not testing.
I don't recommand using Selenium, but instead use Javascript events or JQuery. For example you can add javascript to a webview. Add javascript into WebView
And then you can use JQuery user interface like this:
$( document ).ready(function() {
$("#button-id").click();
});