Retrieves a specific value from a loaded fixture.
Returns the raw key if fixture or key is not found (fallback to raw selector).
Also resolves environment variable placeholders {{VARIABLE_NAME}} in the returned value.
For
Parameters
fixture: Record<string,any>
The loaded fixture object.
keyPath: string
Dot-separated path to the desired value (e.g., "login.usernameField").
Returns any
The value at the specified key path with env vars resolved, or the keyPath itself if not found.
Alias
resolution, use resolveAliasInValue() after getting the value.
Retrieves a specific value from a loaded fixture. Returns the raw key if fixture or key is not found (fallback to raw selector). Also resolves environment variable placeholders {{VARIABLE_NAME}} in the returned value. For