mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
328 B
328 B
sidebar_label |
---|
WaitForSelectorOptions.hidden |
WaitForSelectorOptions.hidden property
Wait for the selected element to not be found in the DOM or to be hidden, i.e. have display: none
or visibility: hidden
CSS properties.
Signature:
interface WaitForSelectorOptions {
hidden?: boolean;
}