Can you please give an example how to use the Unicode for typing Enter key
web.type('id=someElement', '\uE007');
Or you can combine it with text:
web.type('id=someElement', 'hello\uE007');
The full list of supported keyboard codes can be found here.
1 Like