#selenium automation
1 messages · Page 1 of 1 (latest)
An alternative to clicking might be to hit 'enter' to submit the form.
But you're definitley going to want to click... so that's obviously not ideal
There's also a submit() method on form DOM elements that might work even better than pretending to do user inputs.
try:
document.getElementById('join-game').submit();
Oh, nope that doesn't work here