I has been using Powershell 5 to work and manage webpages by something like below. Because IE seems being out of date. I am wondering if I can use MS-Edge instead. Does new version of Powershell has abilities to do that? Thanks
$ie = New-Object -com "InternetExplorer.Application"
$ie.Top = 1
$ie.Left = 3840
$ie.Width = 900
$ie.Height = 900
$ie.visible = $true
$ie.Navigate("https://www.google.com")
$a = $ie.document.getElementsByTagName('a')