Package com.microsoft.playwright
Class Frame.IsHiddenOptions
- java.lang.Object
-
- com.microsoft.playwright.Frame.IsHiddenOptions
-
-
Constructor Summary
Constructors Constructor Description IsHiddenOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Frame.IsHiddenOptions
setStrict(boolean strict)
When true, the call requires selector to resolve to a single element.Frame.IsHiddenOptions
setTimeout(double timeout)
Deprecated.This option is ignored.
-
-
-
Field Detail
-
strict
public Boolean strict
When 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.
-
timeout
public Double timeout
Deprecated.This option is ignored.Frame.isHidden()
does not wait for the element to become hidden and returns immediately.
-
-
Method Detail
-
setStrict
public Frame.IsHiddenOptions setStrict(boolean strict)
When 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.
-
setTimeout
public Frame.IsHiddenOptions setTimeout(double timeout)
Deprecated.This option is ignored.Frame.isHidden()
does not wait for the element to become hidden and returns immediately.
-
-