Invoke-WebRequest to scrape web pages

Dear All,
Is it possible to scrape multiple we pages using Invoke-WebRequest or any powershell cmdlets? I am trying to export all player stats from https://whoscored.com/Statistics - Player Statistics. The list goes on for multiple web pages.
Thanks
Fred

There is no cmdlet/function that by default will do this.
This is why we’d use collections of objects / locations to act on.
Why not just create an array for the websites you are targeting and use ForLoop?
If there is a lot of, leverage parallel processing.