![]() ![]() |
Is is possible to send a mouse click to any button that has an ID="fire" for example?
|
![]() ![]() |
button? document.evaluate("id('fire')", document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue.click();it doesn't work if the element is a link
|
![]() ![]() |
what if I only want to send the clicks at specific times and I don't want it to be persistent? |
![]() ![]() |
Then you use listeners and timeouts. |


