1 2 3 4 |
$query="tiempo madrid" $url = "https://www.bing.com/weather/search?" + $query $result = Invoke-WebRequest $url $result.AllElements | Where Class -eq "CurrentConditionDetails" | Select -First 1 -ExpandProperty innerText |
1 2 3 4 |
$query="tiempo madrid" $url = "https://www.bing.com/weather/search?" + $query $result = Invoke-WebRequest $url $result.AllElements | Where Class -eq "CurrentConditionDetails" | Select -First 1 -ExpandProperty innerText |