@nichoth/test-dom

0.6.4 • Public • Published

test dom

Tools for interacting with DOM elements

install

npm i -D @nichoth/test-dom

use

commonjs

const dom = require('@nichoth/test-dom')

esm

import { dom } from '@nichoth/test-dom'

example

waitForText

const el = await dom.waitForText({
    // `dom.qs` is a convenience function, short for `document.querySelector`
    element: dom.qs('.css-query'),
    regex: /foo/
})

waitFor

const el = await dom.waitFor({
    // css query here
    selector: 'p'
})

qs

// document.querySelector
const el = dom.qs('#my-css-id')

qsa

// document.querySelectorAll
const elements = dom.qsa('.my-css-class')

click

Automate click events

const element = dom.qs('#example')
dom.click(element)

test

npm test

Readme

Keywords

Package Sidebar

Install

npm i @nichoth/test-dom

Weekly Downloads

0

Version

0.6.4

License

ISC

Unpacked Size

31.3 kB

Total Files

11

Last publish

Collaborators

  • nichoth