I have an element like this.
<g id="box_w" onclick="recordResponseKeyboard('W');" onmousedown="svgFill('W');" onmouseup="svgUnfill('W');">
<rect fill="#FFFFFF" height="68.522" stroke="#FFFFFF" stroke-miterlimit="10" width="119.297" x="306.673" y="384.406"></rect>
</g>
From the chrome console, I can do to locate the element.
document.getElementById('box_w')
If i call click event,
document.getElementById('box_w').click()
It throws an error that click is not a function.
How to click on the element using console.?