I am fairly new to web scraping and I started with Selenium in VBA/Excel using Chrome. My target elements are the menu items.
In some websites I can find the elements but I can't get their "href". Here is the destination website. I want the "href" of the menu items in the right side of the page.
This is what I tried:
' geting the menus, working well:
Set mnus = bot1.FindElementsByClass("topmenu")
MenuCounter = 0
For Each mnu In mnus
'getting the href, fails
lnk = mnu.Attribute("href")
I also tried some other ways but no success.
This is a screen shot of the inspect:

Note that I don't only want the href for this specific element (whose href is "art"). I also want the href of other equivalent menu items (except for the first item).