Textboxes
Practice textbox types: simple, placeholder, password, textarea, readonly, and disabled — with automation‑friendly locators.
Blogspot-safe outputs: the empty symbol is injected by JavaScript (no hardcoded em dash in HTML).
Simple Textbox
Plain input with live output.
Textbox with Placeholder
Input with placeholder + live output.
Password Textbox
UI hides the value; we expose length for automation practice.
value using JS/WebDriver, but the UI masks it.
0
Text Area
Counts characters live.
0
maxlength="500" for boundary testing.
Read‑Only Textbox
Readonly is focusable and usually submitted with form data (unlike disabled).
readonly is present, but element is focusable.
Disabled Textbox
Disabled cannot be focused and typically isn’t submitted.
disabled and cannot receive focus.
Actions
Show a JSON snapshot for assertions, or reset all fields.
#allOut sets data-json with the same JSON string.