So I am only a beginner on my path to learning vba and selenium. I was trying to click a button in the chrome settings to disable images, however I couldn't figure out how to achieve this.
I used the following url:
chrome://settings/content/images
And then tried to click on the toggle button with
driver.FindElementByCss("#button").Click
However, I always get the error "Element not visible".
So I figured out it has to be because of the "#shadow root" in the html code. However I have no idea what that means or how to figure out a way to access the element... any tips on how I could figure out a way to solve this are very appreciated :-)
Thank you for your help!