Socket
Book a DemoInstallSign in
Socket

chromeless-tmp

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chromeless-tmp

## Installation ```sh npm install chromeless ```

latest
npmnpm
Version
0.1.22
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

chromeless

Installation

npm install chromeless

Usage

import Chromeless from 'chromeless'

const chromeless = new Chromeless()

chromeless
    .goto('https://console.graph.cool/signup')
    .type('#email', 'test@account.com')
    .type('#password', 'secret password')
    .click('submit')
    .wait('.graphcool-console')
    .evaluate(() => {
        return document.querySelector('.title').text;
    })
    .end()
    .then((title) => {
        console.log('title', title)
    })
    .catch((error) => {
        console.error('test failed', error)
    })

FAQs

Package last updated on 18 Jun 2017

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