Skip to content
Novus Examples
csv1.3 KB

Autocomplete Tokens (CSV)

The autofill tokens as a flat table with their group, the prefixes each accepts, the control type they usually sit on and a sample value. Useful for driving a data-driven autofill test.

Preview — first 27 linescsv
token,group,prefixes_allowed,typical_control,example_value
name,name,section,text,Sample Person
given-name,name,section,text,Sample
family-name,name,section,text,Person
honorific-prefix,name,section,text,Dr
nickname,name,section,text,Sam
username,account,section,text,sample_user
new-password,account,section,password,
current-password,account,section,password,
one-time-code,account,section,text,000000
street-address,address,"section, shipping, billing",textarea,4 Sample Way
address-line1,address,"section, shipping, billing",text,4 Sample Way
address-level2,address,"section, shipping, billing",text,Bristol
postal-code,address,"section, shipping, billing",text,BS1 4SP
country,address,"section, shipping, billing",select,GB
cc-name,payment,"section, shipping, billing",text,
cc-number,payment,"section, shipping, billing",text,
cc-exp,payment,"section, shipping, billing",text,
cc-csc,payment,"section, shipping, billing",text,
tel,contact,"section, home, work, mobile",tel,+44 20 7946 0000
tel-country-code,contact,"section, home, work, mobile",text,+44
email,contact,"section, home, work, mobile",email,sample@example.com
impp,contact,"section, home, work, mobile",url,xmpp:sample@example.com
bday,personal,section,date,1990-04-14
language,personal,section,select,en-GB
sex,personal,section,text,

Specifications

Rows
25
Columns
5
Header
true
Encoding
UTF-8

What is a .csv file?

CSV (Comma-Separated Values) is a plain-text tabular format where rows are lines and fields are separated by commas, with quoting rules for values that contain delimiters, quotes, or newlines. It has no formal type system and depends on encoding and dialect conventions. It is the most portable format for tabular data exchange.

How to use this file

Use an example CSV to test parsers against quoting and embedded-delimiter edge cases, header handling, encoding detection, and import pipelines into databases or spreadsheets.

How to use this file for testing

“Autocomplete Tokens (CSV)” is a deterministic Novus Examples fixture for Form parsing, Form testing, CSV parsing. PDF AcroForms with documented fields and live HTML forms for testing form parsers and fillers.

Documented properties for this file: 25 rows · 5 columns · UTF-8. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

This form is fictional SAMPLE content for tooling tests (autofill, scrapers, PDF fillers). It is not an official government, bank, or clinic form. Open the HTML offline or fill the PDF in any viewer; the demo submit path never stores data.

Code examples

import pandas as pd

df = pd.read_csv("autocomplete-tokens.csv")
print(df.head())
print(df.dtypes)

Generated by generation/forms_p7.py. Free for any use, no attribution required — license.