I am using VBA to scrape a website. I was given the URL to the homepage of the website, but I need to access the info in its tabs. The URL stays the same upon entering the tab. I have looked online.
<li>
<a href="#" onclick="displayQuery();">Query</a>
</li>
I looked into HTML and this is the part that is executed when I click on the relevant tab.
I tried ie.document.querySelector("div[id=overview]").Click
.