The upload form contains an <input type="file"> element. Playwright’s setInputFiles method passes the file path directly to the input without opening a file-picker dialog. After selecting the file, submit the form.
This scenario validates correct use of the setInputFiles method — the regular fill method does not work on file inputs.
page is already available — write your code below.