Package com.microsoft.playwright
Class Frame.SelectOptionOptions
- java.lang.Object
-
- com.microsoft.playwright.Frame.SelectOptionOptions
-
-
Field Summary
Fields Modifier and Type Field Description Boolean
noWaitAfter
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading.Integer
timeout
Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout.
-
Constructor Summary
Constructors Constructor Description SelectOptionOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Frame.SelectOptionOptions
withNoWaitAfter(Boolean noWaitAfter)
Frame.SelectOptionOptions
withTimeout(Integer timeout)
-
-
-
Field Detail
-
noWaitAfter
public Boolean noWaitAfter
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse
.
-
timeout
public Integer timeout
Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
-
-
Method Detail
-
withNoWaitAfter
public Frame.SelectOptionOptions withNoWaitAfter(Boolean noWaitAfter)
-
withTimeout
public Frame.SelectOptionOptions withTimeout(Integer timeout)
-
-