2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-03-01 04:49:04 -03:00
|
|
|
<input id="input" type="text" maxlength="5"><script src="include.js"></script><script>
|
|
|
|
|
test(() => {
|
|
|
|
|
const input = document.getElementById('input');
|
|
|
|
|
internals.sendText(input, 'Hello World!');
|
|
|
|
|
internals.commitText();
|
2024-10-02 13:38:10 -03:00
|
|
|
|
|
|
|
|
println(input.value);
|
2024-03-01 04:49:04 -03:00
|
|
|
});
|
|
|
|
|
</script>
|