wait-for-element.js

This library provide a function which wait until an element is visible.

MIT License

Downloads
1.5K
Stars
51
Committers
1

wait-for-element.js Build Status

This library provide a function which wait until an element is visible.

Installation

npm install wait-for-element

Dependency

  • Promise API

if you use it with non promise support browser, should load Promise polyfill like ES6-Promise.

if you use it with old browser.

if (Element && !Element.prototype.matches) {
    var proto = Element.prototype;
    proto.matches = proto.matchesSelector ||
    proto.mozMatchesSelector || proto.msMatchesSelector ||
    proto.oMatchesSelector || proto.webkitMatchesSelector;
}

or use polyfill.

wait-for-element do feature detection and use either one of the two.

Usage

For details, please see Example.

/**
 * Wait until an element that is matched the selector is visible.
 * @param {string} selector the css selector
 * @param {number} timeout the timeout is millisecond. default:2000ms
 * @returns {Promise}
 */
var waitForElement = require("wait-for-element");
waitForElement("#js-element").then(function (element) {
    alert("Found #js-element");
}).catch(console.error.bind(console));

Tests

npm test

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT