Uses of Interface
com.microsoft.playwright.FileChooser
-
Packages that use FileChooser Package Description com.microsoft.playwright com.microsoft.playwright.impl -
-
Uses of FileChooser in com.microsoft.playwright
Fields in com.microsoft.playwright with type parameters of type FileChooser Modifier and Type Field Description java.util.function.Predicate<FileChooser>Page.WaitForFileChooserOptions. predicateReceives theFileChooserobject and resolves to truthy value when the waiting should resolve.Methods in com.microsoft.playwright that return FileChooser Modifier and Type Method Description FileChooserPage. waitForFileChooser(Page.WaitForFileChooserOptions options, java.lang.Runnable callback)Performs action and waits for a newFileChooserto be created.default FileChooserPage. waitForFileChooser(java.lang.Runnable callback)Performs action and waits for a newFileChooserto be created.Method parameters in com.microsoft.playwright with type arguments of type FileChooser Modifier and Type Method Description voidPage. offFileChooser(java.util.function.Consumer<FileChooser> handler)Removes handler that was previously added withonFileChooser(handler).voidPage. onFileChooser(java.util.function.Consumer<FileChooser> handler)Emitted when a file chooser is supposed to appear, such as after clicking the<input type=file>.Page.WaitForFileChooserOptionsPage.WaitForFileChooserOptions. setPredicate(java.util.function.Predicate<FileChooser> predicate)Receives theFileChooserobject and resolves to truthy value when the waiting should resolve. -
Uses of FileChooser in com.microsoft.playwright.impl
Classes in com.microsoft.playwright.impl that implement FileChooser Modifier and Type Class Description (package private) classFileChooserImplMethods in com.microsoft.playwright.impl that return FileChooser Modifier and Type Method Description FileChooserPageImpl. waitForFileChooser(Page.WaitForFileChooserOptions options, java.lang.Runnable code)private FileChooserPageImpl. waitForFileChooserImpl(Page.WaitForFileChooserOptions options, java.lang.Runnable code)Method parameters in com.microsoft.playwright.impl with type arguments of type FileChooser Modifier and Type Method Description voidPageImpl. offFileChooser(java.util.function.Consumer<FileChooser> handler)voidPageImpl. onFileChooser(java.util.function.Consumer<FileChooser> handler)
-