.getAriaRole() Suggest edits
Returns the computed WAI-ARIA role of an element.
getAriaRole()
will automatically wait for the element to be present (until the specified timeout). If the element is not found, an error is thrown which will cause the test to fail. Starting with v1.2
you can suppress element not found errors by specifying the suppressNotFoundErrors
option.
Usage
.getAriaRole(selector, callback)
.getAriaRole(using, selector, callback)
Parameters
Name | Type | description |
---|---|---|
using Optional |
string | The locator strategy to use. See W3C Webdriver - locator strategies |
selector |
string | The CSS/Xpath selector used to locate the element. |
callback |
function | Callback function which is called with the result value. |
Returns
Type | description |
---|---|
string | The computed WAI-ARIA role of element. |
Example
module.exports = {
demoTest(browser) {
browser.getAriaRole('[name="search"]', function(result) {
this.assert.equal(typeof result, 'object');
this.assert.equal(result.value, 'combobox');
});
// with explicit locate strategy
browser.getAriaRole('css selector', '[name="search"]', function(result) {
console.log('getAriaRole result', result.value);
});
// with selector object - see https://nightwatchjs.org/guide#element-properties
browser.getAriaRole({
selector: '[name="search"]',
index: 1
}, function(result) {
console.log('getAriaRole result', result.value);
});
browser.getAriaRole({
selector: '[name="search"]',
timeout: 2000 // overwrite the default timeout (in ms) to check if the element is present
}, function(result) {
console.log('getAriaRole result', result.value);
});
},
demoTestAsync: async function(browser) {
const result = await browser.getAriaRole('*[name="search"]');
console.log('getAriaRole result', result);
}
}