.getValue() Suggest edits
Returns a form element current value.
The command getValue() 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. You can suppress element not found errors by specifying the selector argument as an object and passing the suppressNotFoundErrors = true option.
Usage
.getValue(selector, [callback])
browser.element(selector).getValue()
Example
module.exports = {
demoTest(browser) {
browser.getValue('#login input[type=text]', function(result) {
console.log('result', result);
});
// with explicit locate strategy
browser.getValue('css selector', '#login input[type=text]', function(result) {
console.log('result', result);
});
// with selector object - see https://nightwatchjs.org/guide/writing-tests/finding-interacting-with-dom-elements.html#postdoc-element-properties
browser.getValue({
selector: '#login input[type=text]',
index: 1,
suppressNotFoundErrors: true
}, function(result) {
console.log('result', result);
});
},
demoTestAsync: async function(browser) {
const result = await browser.getValue('#login input[type=text]');
console.log('Value', result);
}
}
Parameters
| Name | Type | description |
|---|---|---|
usingOptional |
string | The locator strategy to use. See W3C Webdriver - locator strategies |
selector |
string | object | The selector (CSS/Xpath) used to locate the element. Can either be a string or an object which specifies element properties. |
callback |
function | Callback function which is called with the result value. |
Returns
| Type | description |
|---|---|
| string | The element's value. |