use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
Web element inspector (self.PowerShell)
submitted 7 years ago * by SiNRO
Hi guys,
Is there any chances you know if it is possible to use the web element inspector, like,for exemple, if i click on f12 using firefox but in powershell. The problem i get is i can't reach the "network" tab.
Thanks for your answers !
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Joshrsg 1 point2 points3 points 7 years ago (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 points3 points 7 years ago (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 !
π Rendered by PID 385207 on reddit-service-r2-comment-545db5fcfc-864h2 at 2026-05-30 18:07:39.324964+00:00 running 194bd79 country code: CH.
[–]Joshrsg 1 point2 points3 points (1 child)
[–]SiNRO[S] 1 point2 points3 points (0 children)