1.0.0 • Published 11 years ago
browser-test-helpers v1.0.0
browser-test-helpers
A small set of generic test helpers for browser interaction tests.
api
var help = new BrowserTestHelpers()
help.click(element[, options])
Simulates a click event on the given element.
var button = document.querySelector('button')
help.click(button, { bubbles: false })help.fillIn(element, value)
Fills in an field with the given value.
var input = document.querySelector('input')
help.fillIn(input, 'Testing')help.triggerEvent(element, type[, options])
Triggers the type of event on the given element.
var input = document.querySelector('input')
help.triggerEvent(input, 'focus')help.keyEvent(element, type[, options])
Triggers a KeyboardEvent on the given element.
var el = document.getElementById('bear')
help.keyEvent(el, 'keypress', { keyCode: 13, shiftKey: true })license
(c) 2015 Kyle Robinson Young. MIT License
1.0.0
11 years ago