mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
13 lines
265 B
HTML
13 lines
265 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>File upload test</title>
|
|
</head>
|
|
<body>
|
|
<form action="/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" multiple name="file1">
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|