ClericPy / ichrome

Chrome controller for Humans, based on Chrome Devtools Protocol(CDP) and python3.7+.
https://pypi.org/project/ichrome/
MIT License
227 stars 29 forks source link

keyboard_send emoticon/emoji #116

Closed bpkddr closed 1 year ago

bpkddr commented 1 year ago

hi,

how to keyboard_send for typing emoticon/emoji correctly? i was test send this 👉 become ( see image )

Screenshot_286

ClericPy commented 1 year ago

I tried and failed. await tab.keyboard_send(string='👉')

https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent Emoji is not a valid KeyEvent

so use await tab.send(method='Input.insertText', text='👉') instead. It works well.

https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-insertText