(
self,
files: Union[
str, Path, FilePayload, Sequence[Union[str, Path]], Sequence[FilePayload]
],
timeout: float = None,
noWaitAfter: bool = None,
)
| 47 | return self._is_multiple |
| 48 | |
| 49 | async def set_files( |
| 50 | self, |
| 51 | files: Union[ |
| 52 | str, Path, FilePayload, Sequence[Union[str, Path]], Sequence[FilePayload] |
| 53 | ], |
| 54 | timeout: float = None, |
| 55 | noWaitAfter: bool = None, |
| 56 | ) -> None: |
| 57 | await self._element_handle.set_input_files(files, timeout, noWaitAfter) |
nothing calls this directly
no test coverage detected