I want to click a button in webpage using chrome extension. The DOM of the button is as below:
<button class="btn btn-lg btn-start" id="start">Download</button>
I got the DOM information from chrome panel (F12). It does not have a field of "onclick". Is that means I could not click it by script? I could only click it by mouse? Thank you for any explaination.