RecordingLocalize
RecordingLocalize =
object
Defined in: builder.ts:58
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. A language is added by putting it in
this video.languages([...]) block, so the set is always code-defined.
Properties
Section titled “Properties”browserLocale?
Section titled “browserLocale?”
optionalbrowserLocale?:boolean
Defined in: builder.ts:63
languages?
Section titled “languages?”
optionallanguages?: readonlyLang[]
Defined in: builder.ts:60
Explicit code seed from video.languages(['en', ...]), if any.
locales?
Section titled “locales?”
optionallocales?:Partial<Record<Lang,string>>
Defined in: builder.ts:62
optionalmode?:LocalizeMode
Defined in: builder.ts:61