I have this obfuscated webpage that contains a text-area,
When a user manually inserts text and presses Enter key while editing the text area an event that changes the DOM
launches.
I need to pragmatically launch that event,
I know how to get to the text-area itself (using getElementsByName
)
and I'm basically inserting text via textArea.value = ''
How do I get that event to launch?