Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/k6/latest/javascript-api/jslib/testing/retrying-assertions/tobevisible.md (append .md) or send Accept: text/markdown to /docs/k6/latest/javascript-api/jslib/testing/retrying-assertions/tobevisible/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
toBeVisible()
The toBeVisible() method asserts that an element is visible on the page. This is a retrying assertion that automatically waits for the element to become visible.
Syntax
await expect(locator).toBeVisible();
await expect(locator).not.toBeVisible();
await expect(locator).toBeVisible(options);Parameters
| Parameter | Type | Description |
|---|---|---|
| options | RetryConfig | Optional configuration options |
Returns
| Type | Description |
|---|---|
| Promise | A promise that resolves when the assertion passes |
Description
The toBeVisible() method checks if an element is visible on the page. An element is considered visible if:
- It exists in the DOM
- It has non-zero dimensions
- It is not hidden by CSS (
display: none,visibility: hidden, etc.) - It is not outside the viewport bounds
This is a retrying assertion that will automatically re-check the element’s visibility until it becomes visible or the timeout is reached.
Usage
import { browser } from 'k6/browser';
import { expect } from 'https://jslib.k6.io/k6-testing/0.6.1/index.js';
export const options = {
scenarios: {
ui: {
executor: 'shared-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
}
};
export default async function () {
const page = await browser.newPage();
await page.goto('https://quickpizza.grafana.com/');
// Wait for element to be visible
await expect(page.locator('h1')).toBeVisible();
await expect(page.locator('button[name="pizza-please"]')).toBeVisible();
}Was this page helpful?
Related resources from Grafana Labs

