Use the ALT + S key

I couldn’t make a keyboard shortcut, just like alt_f(). I want to use the keyboard shortcut Alt_s (ALT + S) and also Alt_n (ALT + N).

Thanks in advance.

Hi @alison.sassi,

You can try to use the type_keys() method: Framework - BotCity Framework Core - Python

Just pass as a list the keys that will be pressed. Something like:

self.type_keys(["alt", "s"])
2 Likes