RecordingLocalize
RecordingLocalize =
object
Defined in: builder.ts:59
Recording-level localization config, declared via video.languages(...). It
drives the registration-time fan-out (one Playwright test per language), so it
lives on a builder method rather than in recordOptions (a run-time option).
Code is the single source of truth: the recorded set is the union of the code
seed (video.languages(['en', 'fi'])) and the per-feature language keys, then
restricted by the --languages filter. Adding a language in the web editor
codegens it into this video.languages([...]) block, so it is code again by
the next record.
Properties
Section titled “Properties”browserLocale?
Section titled “browserLocale?”
optionalbrowserLocale?:boolean
Defined in: builder.ts:64
languages?
Section titled “languages?”
optionallanguages?: readonlyLang[]
Defined in: builder.ts:61
Explicit code seed from video.languages(['en', ...]), if any.
locales?
Section titled “locales?”
optionallocales?:Partial<Record<Lang,string>>
Defined in: builder.ts:63
optionalmode?:LocalizeMode
Defined in: builder.ts:62