How To Automate A Flutter Application October 23, 2024 Post a Comment 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 andSolution 1: You can execute JavaScript in your WebViewHere is a tutorialOnce 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"; Copy Share Post a Comment for "How To Automate A Flutter Application"
Post a Comment for "How To Automate A Flutter Application"