Giter Club home page Giter Club logo

ghostcursor's Introduction

Ghost Cursor for .NET

Simple port of Ghost Cursor to .NET.

Ghost Cursor is a library for CefSharp and PuppeteerSharp that moves the mouse cursor in a more natural way.

Installation

Install one of the following NuGet packages:

Clicking elements

When trying to click an element, the library checks if:

  1. The element is in the DOM, if not, throws CursorElementNotFoundException
  2. The element is in the viewport, if not, it scrolls to the element.
  3. The element is visible (e.g. the display is not set to none), if not, throws CursorElementNotVisibleException
  4. The element is clickable (e.g. there is no popup blocking the element), if not, throws CursorElementNotClickableException.

GhostCursor in action

Example in PuppeteerSharp

using System.Threading.Tasks;
using GhostCursor;
using GhostCursor.PuppeteerSharp;
using PuppeteerSharp;

// Initialize PuppeteerSharp
using var browserFetcher = new BrowserFetcher();
await browserFetcher.DownloadAsync();
await using var browser = await Puppeteer.LaunchAsync(new LaunchOptions
{
    Headless = false
});

await using var page = await browser.NewPageAsync();
await page.GoToAsync("https://www.google.com/?hl=en");

// Create the cursor
var options = new CursorOptions
{
    Debug = true,
    DefaultSteps = 20
};

var cursor = page.CreateCursor(options);

// Search for "Hello world" with the cursor
await using (await cursor.StartAsync())
{
    await cursor.ClickAsync(ElementSelector.FromXPath("//div[text() = 'Reject all']"));
    await cursor.ClickAsync("[title='Search']");
    await cursor.TypeAsync("Hello world");
    await cursor.ClickAsync("input[value='Google Search']");
    await page.WaitForNavigationAsync();
}

// Wait for 2 seconds before closing the browser
await Task.Delay(2000);

ghostcursor's People

Contributors

gerardsmit avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.