Skip to main content

Textboxes

Blogspot-safe outputs: the empty symbol is injected by JavaScript (no hardcoded em dash in HTML).

Simple Textbox

Plain input with live output.

SIMPLE
Value:

Textbox with Placeholder

Input with placeholder + live output.

PLACEHOLDER
Value:

Password Textbox

UI hides the value; we expose length for automation practice.

PASSWORD
For automation, you can read the value using JS/WebDriver, but the UI masks it.
Length: 0

Text Area

Counts characters live.

TEXTAREA
Characters: 0
Tip: This field has maxlength="500" for boundary testing.

Read‑Only Textbox

Readonly is focusable and usually submitted with form data (unlike disabled).

READONLY
Good automation check: readonly is present, but element is focusable.

Disabled Textbox

Disabled cannot be focused and typically isn’t submitted.

DISABLED
Good automation check: element has disabled and cannot receive focus.

Actions

Show a JSON snapshot for assertions, or reset all fields.

ACTIONS
Output:
Automation hook: #allOut sets data-json with the same JSON string.