Hi!
Is there a way to execute the shortcut “control + shift + del” via the desktop automation?
Thanks!
Hi!
Is there a way to execute the shortcut “control + shift + del” via the desktop automation?
Thanks!
Hi @Diego.Pereira, you can try something like:
bot = DesktopBot()
bot.type_keys(keys=["ctrl", "shift", "delete"])
Reference: Keyboard - BotCity - Python RPA