Skip to content Skip to sidebar Skip to footer

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

Solution 1:

You can execute JavaScript in your WebView

Here is a tutorial

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"