UNPKG

nightwatch

Version:

Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.

58 lines (53 loc) 2.11 kB
const BaseElementCommand = require('./_baseElementCommand.js'); /** * Determines if an element is enabled, as indicated by the 'disabled' attribute. * * @example * module.exports = { * demoTest(browser) { * browser.isEnabled('#main select option.first', function(result) { * this.assert.equal(typeof result, "object"); * this.assert.equal(result.status, 0); * this.assert.equal(result.value, true); * }); * * // with explicit locate strategy * browser.isEnabled('css selector', '#main select option.first'); * * // with selector object - see https://nightwatchjs.org/guide/writing-tests/finding-interacting-with-dom-elements.html#postdoc-element-properties * browser.isEnabled({ * selector: '#main ul li a', * index: 1, * suppressNotFoundErrors: true * }); * * browser.isEnabled({ * selector: '#main select option.first', * timeout: 2000 // overwrite the default timeout (in ms) to check if the element is present * }); * }, * * demoTestAsync: async function(browser) { * const result = await browser.isEnabled('#main select option.first'); * console.log('isVisible result', result); * } * } * * @method isEnabled * @syntax .isEnabled(selector, callback) * @syntax .isEnabled(using, selector, callback) * @param {string} [using] The locator strategy to use. See [W3C Webdriver - locator strategies](https://www.w3.org/TR/webdriver/#locator-strategies) * @param {string|object} selector The selector (CSS/Xpath) used to locate the element. Can either be a string or an object which specifies [element properties](https://nightwatchjs.org/guide/writing-tests/finding-interacting-with-dom-elements.html#postdoc-element-properties). * @param {function} callback Callback function which is called with the result value. * @link /#is-element-enabled * @api protocol.elementstate */ class IsEnabled extends BaseElementCommand { get extraArgsCount() { return 0; } get elementProtocolAction() { return 'isElementEnabled'; } } module.exports = IsEnabled;