# marionettejs

> Node.js bindings for [Marionette](https://github.com/LinusU/Marionette), a high-level API to control a WKWebView.

Latest version **1.0.0-alpha.5** (published 2019-02-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install marionettejs
pnpm add marionettejs
yarn add marionettejs
bun add marionettejs
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0-alpha.5 |
| Published | 2019-02-27 |
| First published | 2016-12-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 10.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 4 |
| Maintainers | linusu |

## Links

- npm: https://www.npmjs.com/package/marionettejs
- Repository: https://github.com/LinusU/marionettejs
- Homepage: https://github.com/LinusU/marionettejs#readme
- Issues: https://github.com/LinusU/marionettejs/issues
- npm.io page: https://npm.io/package/marionettejs

## Recent versions

- 1.0.0-alpha.5 (latest) — 2019-02-27
- 1.0.0-alpha.4 — 2019-02-25
- 1.0.0-alpha.3 — 2019-02-19
- 1.0.0-alpha.2 — 2019-02-19
- 1.0.0-alpha.1 — 2019-02-14
- 0.0.0 — 2016-12-18

## README

# MarionetteJS

Node.js bindings for [Marionette](https://github.com/LinusU/Marionette), a high-level API to control a WKWebView.

## Installation

```sh
npm install --save marionettejs
```

## Usage

```js
const Page = require('marionettejs')

const page = new Page()

// Go to google
await page.goto('https://www.google.com/')

// Type in "LinusU Marionette"
await page.type(`input[name='q']`, 'LinusU Marionette')

// Click the search button, and wait for navigation
await Promise.all([page.waitForNavigation(), page.click(`input[type='submit']`)])
```

---
_Source: https://npm.io/package/marionettejs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
