Package com.microsoft.playwright
Class ElementHandle.InputValueOptions
- java.lang.Object
-
- com.microsoft.playwright.ElementHandle.InputValueOptions
-
- Enclosing interface:
- ElementHandle
public static class ElementHandle.InputValueOptions extends Object
-
-
Constructor Summary
Constructors Constructor Description InputValueOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElementHandle.InputValueOptions
setTimeout(double timeout)
Maximum time in milliseconds.
-
-
-
Field Detail
-
timeout
public Double timeout
Maximum time in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using theBrowserContext.setDefaultTimeout()
orPage.setDefaultTimeout()
methods.
-
-
Method Detail
-
setTimeout
public ElementHandle.InputValueOptions setTimeout(double timeout)
Maximum time in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using theBrowserContext.setDefaultTimeout()
orPage.setDefaultTimeout()
methods.
-
-