Script containing sendKeyPress (ENTER button)

Hello.

I’m having problems with a script I’m writing and trying to execute. This script fills an input field (had to use exec scripting function for context-specific issues) and then tries to press ENTER to do something else. Here’s the script:

[font=Courier]combineSteps
navigate http://todomvc.com/architecture-examples/emberjs/
exec document.getElementById(‘new-todo’).value=‘Example task’
sendClick id=new-todo
sendKeyPressAndWait id=new-todo ENTER [/font]

The thing is it doesn’t perform the ENTER keypress event and I can’t figure out why.

Any thoughts? Thank you.