I'm wondering whether Google Analytics events are fired if I'm scraping data from a webpage using VBA scraping script? I'm not using browser simulation, I'm using MSXML2.XMLhttp
object with a GET
request.
For example
Set XMLreq = CreateObject("MSXML2.XMLhttp")
With XMLreq
url = "url_of_website"
.Open "GET", url, False
.send
Set HTMLdoc = CreateObject("HTMLFile")
HTMLdoc.body.innerHTML = .responseText
End With
Does this fire Google Analytics data back to the server?