This formula was pretty ok just few months ago:
=IMPORTXML("https://www.google.com/search?q=Edward", "//h3")
Now it throws an error:
Could not fetch url: https://www.google.com/search?q=Edward
Why did it happen and how to correct it?
This formula was pretty ok just few months ago:
=IMPORTXML("https://www.google.com/search?q=Edward", "//h3")
Now it throws an error:
Could not fetch url: https://www.google.com/search?q=Edward
Why did it happen and how to correct it?
Try two things: one without the "S" on "https" and also a couple other xpaths, there are a few:
=IMPORTXML("http://www.google.com/search?q=Edward", "//h3")
=IMPORTXML("https://www.google.com/search?q=Edward", "//cite")