No results for

Powered byAlgolia

isVisible(selector[, options])

warning

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

Checks if the element is visible.

ParameterTypeDefaultDescription
selector
string''A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
options
objectnull

Returns

TypeDescription
booltrue if the element is visible, else false.

Example

import { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const page = browser.newPage();
await page.goto('https://test.k6.io/browser.php');
if (page.isVisible('#text1')) {
console.log("element is visible");
}
}