Simulate user input delay
On this page, you’ll learn how to best work with sleep
in k6
and the various wait*
prepended methods available in k6/browser
to simulate user input delay, wait for navigations, and wait for element state changes. By the end of this page, you should be able to successfully use the correct API where necessary.
Note
While using thesleep
orpage.waitForTimeout
functions to wait for element state changes may seem helpful, it’s best to avoid them to prevent flakey tests. Instead, it’s better to use the otherwait*
prepended methods listed on this page.
What is sleep
?
sleep is a first class function built into k6. It’s main use is to “suspend VU execution for the specified duration” which is most useful when you want to simulate user input delay, such as:
- Navigating to a page.
- Sleeping for one second to simulate a user looking for a specific element on the page.
- Clicking on the element.
Warning
sleep
is a synchronous function that blocks the JavaScript event loop, which means that all asynchronous work will also be suspended untilsleep
completes.The browser module predominantly provides asynchronous APIs, so it’s best to avoid working with
sleep
. Instead, use the page.waitForTimeout function.
What is wait*
?
In the browser modules there are various asynchronous APIs that can be used to wait for certain states:
Method | Description |
---|---|
page.waitForFunction | Waits for the given function to return a truthy value. |
page.waitForLoadState | Waits for the specified page life cycle event. |
page.waitForNavigation | Waits for the navigation to complete after one starts. |
locator.waitFor | Wait for the element to be in a particular state. |
page.waitForTimeout | Waits the given time. Use this instead of sleep in your frontend tests. |
page.waitForFunction
page.waitForFunction is useful when you want more control over when a test progresses with a javascript function that returns true when a condition (or many conditions) is met. It can be used to poll for changes in the DOM or non-DOM elements and variables.
import { browser } from 'k6/browser';
import { check } from 'https://jslib.k6.io/k6-utils/1.5.0/index.js';
export const options = {
scenarios: {
browser: {
executor: 'shared-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
},
};
export default async function () {
const page = await browser.newPage();
try {
// Setting up the example that will mutate the h1 element by setting the
// h1 elements text value to "Hello".
await page.evaluate(() => {
setTimeout(() => {
const el = document.createElement('h1');
el.innerHTML = 'Hello';
document.body.appendChild(el);
}, 1000);
});
// Waiting until the h1 element has mutated.
const ok = await page.waitForFunction("document.querySelector('h1')", {
polling: 'mutation',
timeout: 2000,
});
await check(ok, {
'waitForFunction successfully resolved': async (ok) => (await ok.innerHTML()) == 'Hello',
});
} finally {
await page.close();
}
}
page.waitForLoadState
page.waitForLoadState is useful when there’s no explicit navigation, but you need to wait for the page or network to settle. This is mainly used when working with single-page applications or when no full page reloads happen.
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();
try {
// Goto a SPA
await page.goto('<url>');
// ... perform some actions that reload part of the page.
// waits for the default `load` event.
await page.waitForLoadState();
} finally {
await page.close();
}
}
page.waitForNavigation
page.waitForNavigation is a very useful API when performing other actions that could start a page navigation, and they don’t automatically wait for the navigation to end. Usually, you’ll find it in our examples with a click
API call. Note that goto is an example of an API that doesn’t require waitForNavigation
since it will automatically wait for the navigation to complete before returning.
It’s important to call this in a Promise.all along with the API that will cause the navigation to start.
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();
try {
await page.goto('https://test.k6.io/my_messages.php');
await page.locator('input[name="login"]').type('admin');
await page.locator('input[name="password"]').type('123');
const submitButton = page.locator('input[type="submit"]');
// The click action will start a navigation, and the waitForNavigation
// will help the test wait until the navigation completes.
await Promise.all([page.waitForNavigation(), submitButton.click()]);
} finally {
await page.close();
}
}
locator.waitFor
locator.waitFor will wait until the element meets the waiting criteria. It’s useful when dealing with dynamic websites where elements may take time to appear or change state. For example, if elements load after some delay due to async calls, or because of slow JavaScript execution.
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');
const text = page.locator('#input-text-hidden');
await text.waitFor({
state: 'hidden',
});
}
page.waitForTimeout
page.waitForTimeout will wait the given amount of time. It’s functionally the same as k6’s sleep, but it’s asynchronous, which means it will not block the event loop and allows the background tasks to continue to be worked on.
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();
try {
await page.goto('https://test.k6.io');
// Slow the test down to mimic a user looking for the element on the page.
await page.waitForTimeout(1000);
// ... perform the next action
} finally {
await page.close();
}
}