I am trying with chromeless to click on a submit button whose code is:
<input value="Submit" onclick="normal_upload()" id="submitbutton" type="button">
I have tried
const screenshot = await chromeless
.click('input#submitbutton')
and
const screenshot = await chromeless
.click('#submitbutton')
and
const screenshot = await chromeless
.click('input[value="Submit"]')
but none of these seem to work (nothing happens, and no error message).
What could be blocking the click?