I'm trying to screenshot a specific ID which contains a table of weather forecasts for the week (https://forecast.weather.gov/MapClick.php?lat=41.8843&lon=-87.6324#.W5kg1ehKiUk, and the ID is "seven-day-forecast-body") but my code doesn't seem to work, and I've found few VBA-specific examples. Here's what I'm working with. Much appreciated, thank you.
Sub seleniumtutorial()
Dim bot As New WebDriver
bot.Start "IE", "https://forecast.weather.gov/MapClick.php?lat=41.8843&lon=-87.6324#.W5kg1ehKiUk"
bot.Get "/"
bot.FindElementById("seven-day-forecast-body").SaveAs (ActiveWorkbook.Path + "/chicago.jpg")
bot.Quit
End Sub