Vba + Google Chrome

0

I have been doubting for some time and even after several searches I did not succeed. I'm creating a function in VBA that can handle a webpage using Google Chrome. Although I set the chrome as an object, I can only send "sendkeys" commands to the browser and this is complicated because I can not capture information but only send the keyboard functions. My question is: Is there any way to use vba to capture / send / manipulate open pages in google chrome without using sendkeys methods?

    
asked by anonymous 02.03.2018 / 21:20

1 answer

0

Unfortunately, VBA can not interact with these software natively, only with Internet Explorer (IE).

So I recommend using a 3rd party :

Selenium VBA

    
02.03.2018 / 22:00