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. **Cannot type uppercase symbols:** ``` using Desktop.Robot; using Desktop.Robot.Extensions; using System.Text.RegularExpressions; DoTask(); void DoTask() { const string s1 = "~!@#$%^&*()_+{}|:\"?"; const string s2 = "VaLeri+buHattI+2022 ~~ !! @@ ##...
I tried to input ፆ `robot.KeyPress('\u1346');` but i am getting wrong result. any idea how to implement Unicode characters?
OS: Arch Linux x86_64 I have an application that takes in a chord of keypresses and outputs an according character using XGrabKey/XUngrabKey/XQueryKeymap, when trying to use Desktop.Robot to type the...
When i write keys i got a wrong output  The same with a string I can see that it is depending on the keyboard. I have an Belgium Azerty...
Is there a way to send uppercase or shifted characters easily? robot.CombineKeys(Key.Shift, Key.A); Seems to work for "ordinary" alphabetical characters, but is a bit awkward for every single use. For...
I see in your `Example` folder [here](https://github.com/lucassklp/Desktop.Robot/blob/main/Example/Program.cs) a method called `CombineKeys` that is not currently available. Do you plan to add key modifiers to the keyboard methods already available, such...
I want to send the keypresses for the string "This is a test!" but it turns into "this is a test1". I'm assuming the letters are reduced to their respective...
When I try use Key.Press(Key.Esc) in my project on Ubi Linux system return error: `Unable to load shared library './x11.os' or one of its dependencies. In order to help diagnose...
**Environment** * I'm coding c#, open nuget packages and *I installed Desktop.Robot version 1.5.0 ``` using Desktop.Robot; using Desktop.Robot.Extensions; robot.CombineKey(Key.Shift, Key.QuotationMark) ``` **Issue**: *When i'm using robot.CombineKey(Key.Shift, Key.QuotationMark) then it...
Also adds test for quotation marks. The test fails on linux because it uses `CombineKeys`. Fixes #55