Socket
Socket
Sign inDemoInstall

marionettejs

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    marionettejs

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


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

MarionetteJS

Node.js bindings for Marionette, a high-level API to control a WKWebView.

Installation

npm install --save marionettejs

Usage

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']`)])

FAQs

Last updated on 27 Feb 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc