Package com.microsoft.playwright
Class Frame.SetInputFilesOptions
- java.lang.Object
-
- com.microsoft.playwright.Frame.SetInputFilesOptions
-
-
Constructor Summary
Constructors Constructor Description SetInputFilesOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Frame.SetInputFilesOptions
setNoWaitAfter(boolean noWaitAfter)
Deprecated.This option has no effect.Frame.SetInputFilesOptions
setStrict(boolean strict)
When true, the call requires selector to resolve to a single element.Frame.SetInputFilesOptions
setTimeout(double timeout)
Maximum time in milliseconds.
-
-
-
Field Detail
-
noWaitAfter
public Boolean noWaitAfter
Deprecated.This option has no effect.
-
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
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
-
setNoWaitAfter
public Frame.SetInputFilesOptions setNoWaitAfter(boolean noWaitAfter)
Deprecated.This option has no effect.
-
setStrict
public Frame.SetInputFilesOptions 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.SetInputFilesOptions 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.
-
-