1 2 3 4 5 6 7 8 9 10 |
foreach($empresa in @(((Invoke-WebRequest 'http://www.bolsamadrid.es/esp/aspx/Mercados/Precios.aspx?indice=ESI100000000').AllElements).where{$_.Class -eq "DifFlBj"}).innerText) { foreach($directivo in @(((Invoke-WebRequest "http://www.empresia.es/empresa/$empresa").AllElements).where{$_.id -eq "ListaRelaciones"}).innerText -split '[\r\n]') { #$directivo.Split('.')[0] @(((Invoke-WebRequest "https://www.google.es/search?q=inurl:boe.es+$directivo").AllElements).where{$_.Class -eq "st"}).innerText Start-Sleep -Seconds 5 } Start-Sleep -Seconds 10 } |