I builed a webscraper with python and selenium and I want to code an equivalent in flutter with dart. The issue is that in my python code i had to click on buttons etc on a website, but is it possible to do in flutter ? and if it is what Dart packages can i use ?
Thanks for all the help
I already looked into some packages but i didn't find anything
CodePudding user response:
Do have you already watched/tested the puppeteer package? I think it might solve your problem.
I hope this will help you
CodePudding user response:
If you are searching for an way to scrape data, take a look at: https://pub.dev/packages/web_scraper.
It is written in Dart, so you can use in pure Dart and Flutter as well.