I am programming a script that should click buttons on a website, which dont have a onclick event. for example:
<button class="button exButton but">Example</button>
I try to automate them so you don't have to click them all by yourself, i am trying to figure out how i can click them in javascript.
First of all document.getElementsByClassName("button")[0].click
doesn't work
I hope you guys can help me!
Greetz Julian