Menu

This is documentation for the next version of K6. For the latest stable release, go to the latest version.

Open source

inputValue(selector[, options])

Warning

Use locator-based locator.inputValue([options]) instead.

Returns input.value for the selected input, textarea or select element.

ParameterTypeDefaultDescription
selectorstring''A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
optionsobjectnull
options.strictbooleanfalseWhen true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
options.timeoutnumber30000Maximum time in milliseconds. Pass 0 to disable the timeout. Default is overridden by the setDefaultTimeout option on BrowserContext or Page.

Returns

TypeDescription
Promise<string>A Promise that fullfils with the input value of the element.

Example

JavaScript
import { browser } from 'k6/browser';

export const options = {
  scenarios: {
    browser: {
      executor: 'shared-iterations',
      options: {
        browser: {
          type: 'chromium',
        },
      },
    },
  },
};

export default async function () {
  const page = await browser.newPage();

  await page.goto('https://test.k6.io/browser.php');
  await page.fill('#text1', 'Hello world!');
  const inputValue = await page.inputValue('#text1');
  console.log(inputValue);
}