I want my program in VBA to login on a website with chrome webdriver (with selenium) and perform some actions. Unfortunately the website asks me to prove I'm not a bot by refreshing the webpage after login. The problem is that even when I do so manually on the webdriver (to test), it doesn't work and the website won't let me move forward.
I have the feeling that if I open and interact with the website through an existing open browser, the website will not recognize me as a bot. But i cannot manage to do it. I am open to any other solution.
This is how my code starts:
Sub testchrome()
Dim obj As New WebDriver
Dim Keys As New Keys
obj.Start "chrome"
obj.Get "https://freebitcoin.io"
End Sub
And then I just perform my business (login etc.).
I would be so grateful if you have any idea not to be detected as a bot or manage to pass this verification step. Thank you very much for your help.