Dominik R.
Dominik R.

Reputation: 13

Make Autohotkey click on specific buttons in chrome

I'm aware that you need the edge browser to make autohotkey click on specific things by finding out its ID.

But the problem that I ran into, is that the site that I need for my script, only allows you to open it with chrome.

What solution do you guys recommend for this situation. I have tried finding the buttons ID, but I think you can actually only do that in the normal internet-explorer.

Is there some sort of AddIn or something that I could install?

I would appreciate any input and help. 😊

Upvotes: 0

Views: 2387

Answers (1)

Mohamedyassine
Mohamedyassine

Reputation: 26

page.Evaluate("document.getElementById('myBtn').click();")

You should use AHK chrome library.

Upvotes: 1

Related Questions