Home > OS >  Is it possible to use Selenium(or equivalent libraries) in flutter code
Is it possible to use Selenium(or equivalent libraries) in flutter code

Time:02-05

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.

  • Related