Desktop.Robot icon indicating copy to clipboard operation
Desktop.Robot copied to clipboard

A library used to control your mouse and keyboard programmatically in .NET Core

Results 24 Desktop.Robot issues
Sort by recently updated
recently updated
newest added

in c# i used to ``` using Desktop.Robot using Desktop.Robot.Extensions private readonly Robot _robot _robot.KeyPress(#) _robot.KeyPress(&) ``` => with two key is # or & then _robot.KeyPress() not working. But...

So, found your project, looked interesting. I did the standard example with `robot.Type("Hello world!")` in a .NET 6 project. On Windows it works fine, but on Linux nothing happens. It...

I am using your wonderful library to simulate some keyboard input and `Robot.Type(string value)` does not support `@` . `Robot.Type("[email protected]")` = myemail2google.com Is there a workaround for those characters that...

Hi, I was wondering if there will be future support for checking the cursor state? Similar to CURSORINFO with Win32, we hope to detect if the cursor is hidden or...

Hi there, first I would like to thank you for this great library! I needed to simulate keypresses on a Raspberry Pi, but there was no ARM64 support, so I...

Hi there, I've noticed that : ends up as ; on the UI. As I've seen, Colon has the same Keycode as Semicolon in the code. Could this be fix...

After trying all the options (Robot.KeyPress, Robot.KeyDown/Up, etc.) I cannot seem to get a tab event running. I have 3 textboxes which I need to navigate between to type some...

Whenever I try to use KeyUp/KeyDown/KeyPress methods on my arch system it seems to just ignore those and also on first call it outputs this error message to console: Authorization...

Is there a difference between MouseMove and MouseDrag in OSX? I hover over an item (e.g., a file in the explorer/finder) and execute the sequence: robot.MouseDown() robot.MouseMove() robot.MouseUp() On Windows,...