Quote Originally Posted by jackr View Post
Is there a way to invoke a js click such as
WV.jsRun("document.getElementById('Somebutton')".click()")
WV.jsRun is thought for simple (for the most part, self-defined) functions...

For more complex "actions" like yours above, try it with:
WV.ExecuteScript "document.getElementById('Somebutton').click()"
instead.

HTH

Olaf