This library helps you to automate tasks by simulating inputs (mouse and keyboards) programmatically, inspired in java.awt.Robot
I made this library because the dotnet SDK doesn't support simulation of mouse and keyboard input. The only way of input simulation in the standard framework is by using Windows.Forms which won't run on Linux or OSX.
If you are using Package Manager:
Install-Package Desktop.Robot -Version 1.5.0
If you are using .NET CLI
dotnet add package Desktop.Robot --version 1.5.0
- Multiplatform: works on Windows, Linux and OSX
- Built using the Operating System Native and .NET API, other dependencies needed
- Easy to use
using Desktop.Robot;
using Desktop.Robot.Extensions;
namespace Example
{
class Program
{
static void Main(string[] args)
{
var robot = new Robot();
robot.AutoDelay = 1000;
robot.MouseMove(100, 100);
robot.Click();
robot.Type("A invisible cat is using my PC");
}
}
}
In order to use the method CreateScreenCapture you will need to install some libraries. This is required by System.Drawing's components
sudo apt install libgdiplus
- As we are currently developing this tool, multiple monitors are not supported for now.
- The library is under development, and some methods will throw a NotImplementedException