I am writing my userscript for Wikiedia Commons, for this block:
I tried
node.click()
node.dispatchEvent(new MouseEvent('click'))
node.dispatchEvent(new MouseEvent('click', {bubbles: true, cancelable: false, view: window}))
And visually the correct radio button is selected, but when pressing Next I am getting error
Selection is required
So, for some reasong, JS click() is not the same as human click?

Solved by clicking to another element: