Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@guidepup/guidepup

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@guidepup/guidepup

screen-reader driver for automation testing

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.6K
increased by10.09%
Maintainers
1
Weekly downloads
 
Created
Source

Guidepup

Guidepup NPM version) Current test status PRs welcome Guidepup open issues Guidepup stars Guidepup forks Guidepup license

Screen-reader driver for automation testing.

Guidepup aims to provide a reliable set of APIs to allow users to automate the usage of screen-readers through JavaScript.

Getting Started

import { VoiceOver } from "@guidepup/guidepup";

async function run(): Promise<void> {
  const vo = new VoiceOver();
  await vo.start();
  await vo.moveRight();
  console.log(await vo.getItemText());
  await vo.stop();
}

run();

Installation

Install Guidepup with npm or yarn:

# npm
npm install @guidepup/guidepup

# yarn
yarn add @guidepup/guidepup

Guides

Guides

API Documentation

API Documentation

Examples

Examples

Roadmap

  • VoiceOver on MacOS
  • NVDA on Windows
  • VoiceOver on iOS
  • Talkback on Android
  • JAWS on Windows

Building on the shoulders of giants!

Here are some related projects:

License

MIT

Keywords

FAQs

Package last updated on 17 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc