Getting Started
Introduction
Welcome to the documentation for cursor.js. Here you will find the API reference and usage examples.
Installation
You can install cursor.js using your preferred package manager:
npm install @cursor.js/coreyarn add @cursor.js/corepnpm add @cursor.js/coreQuick Start
Here is a simple example to get you started:
import { Cursor } from '@cursor.js/core';
const cursor = new Cursor();
cursor
.hover('.submit-action')
.click('.submit-action')
.wait(1000)
.type('#search-box', 'Hello world!', { delay: 50 });