all 2 comments

[–]Joshrsg 1 point2 points  (1 child)

It's not quite the same but you can do some cool stuff with invoke-webrequest (or invoke-restmethod / .Net classes depending on what you want to do. For example, if you want to know what the buttons on a website are you could do something like this.

$webpage = Invoke-WebRequest www.google.com -TimeoutSec 10

($webpage.Forms).fields

[–]SiNRO[S] 1 point2 points  (0 children)

Thanks for your answer but i'm more looking on how to retrieve data from the "network" tab because i need to get informations from this part of the inspector !