Here is the code for the button that needs pressed:
<div id="ccBtns">
<input type="button" name="" value="submit" class="startSessionButton submit required">
<div class="clear"></div>
</div>
I tried using: document.getElementById('submit').click();
I am using this code in a plugin called Autofill for chrome.
EDIT: I found that his works
document.querySelector('input[type=button]').click();