* fix: support accessibility tree refs in upload command (#1107) The upload command only accepted CSS selectors while click/fill supported accessibility tree refs (e.g. e1, @e1, ref=e1). This resolves the API inconsistency by reusing resolve_element_object_id for all selector types. * style: apply cargo fmt --------- Co-authored-by: hyunjinee <leehj0110@kakao.com>
19 lines
491 B
HTML
19 lines
491 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>Upload Test</title></head>
|
|
<body>
|
|
<h1>Upload Test</h1>
|
|
<label for="fileInput">Choose file:</label>
|
|
<input type="file" id="fileInput" name="fileInput">
|
|
<div id="result"></div>
|
|
<script>
|
|
document.getElementById('fileInput').addEventListener('change', function(e) {
|
|
var file = e.target.files[0];
|
|
if (file) {
|
|
document.getElementById('result').textContent = 'uploaded:' + file.name;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|