How To Automate A Flutter Application
I am working on a project in which I am using webview to open a website. I want the application to automatically fill data in the required fields and log in by reading the OTP and
You can execute JavaScript in your WebView
Once you can execute your javascript, you just have to get your input and fill it.
For example:
const inp = document.getElementById("your_input");
inp.value = "some text";
Post a Comment for "How To Automate A Flutter Application"