1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
$IE= new-object -com InternetExplorer.Application $IE.navigate2("https://www.google.es") while ($IE.busy) { sleep -milliseconds 10000 } $IE.visible=$true $IE.Document.getElementsByClassName("gLFyf gsfi")[0].value="""powershell"""+" inurl:jesusninoc.com"+"" $IE.visible=$false $IE.visible=$true $IE.Document.getElementsByClassName("gNO89b")[0].click() while ($IE.busy) { sleep -milliseconds 10000 } $links=@($ie.document.getElementsByTagName("a")) $links | select href |