Example:
.click('#search-button')
.type('funny', 'input#search-input')
.press(13)
The expected behaviour is to redirect to a search page since I try to trigger an enter event in the input box. However, a new tab is opened instead.

If you're using .press(13) after typing a field did you made sure to maintain .focus?
Just an idea, I personally haven't ran into that issue.
I had to solve that issue by using .type('\r') instead
@sojungko Thanks. Using .type('\r') does work, but I guess it is only a workaround. So I will keep the issue open.
Any updates on this? I can replicate this on 1.3.0 for every keystroke, not just for 13.
Has anyone found a fix for this? I'm still getting this with every key, not just enter!
Most helpful comment
Has anyone found a fix for this? I'm still getting this with every key, not just enter!