Skip to main content

FileChooser

FileChooser objects are dispatched by the page in the page.on("filechooser") event.

with page.expect_file_chooser() as fc_info:
page.get_by_text("Upload").click()
file_chooser = fc_info.value
file_chooser.set_files("myfile.pdf")

file_chooser.element

Added in: v1.8

Returns input element associated with this file chooser.

file_chooser.is_multiple()

Added in: v1.8

Returns whether this file chooser accepts multiple files.

file_chooser.page

Added in: v1.8

Returns page this file chooser belongs to.

file_chooser.set_files(files, **kwargs)

Added in: v1.8

Sets the value of the file input this chooser is associated with. If some of the filePaths are relative paths, then they are resolved relative to the current working directory. For empty array, clears the selected files.