Desktop.Robot
                                
                                 Desktop.Robot copied to clipboard
                                
                                    Desktop.Robot copied to clipboard
                            
                            
                            
                        A library used to control your mouse and keyboard programmatically in .NET Core
Hi all, I would like to support the German keyboard with Desktop.Robot. I have already found a solution for the umlauts. Is it also possible to support the quotation marks...
This was necessary for me to get it running when working remotely over Citrix and RDP, because the modifier keys are not applying if the latency of the remote connection...
I have this code, ```csharp await Task.Delay(500); var robot = new Robot(); robot.AutoDelay = 1000; robot.KeyPress(Key.Right); Console.Beep(); ``` And if I run the code while my cursor is sitting in...
Hey, I noticed that the lovely click extension methods weren't working on my ARM based mac laptop. It was throwing an error about trying to load the wrong architecture file,...