buildCSSPath function presentation exported
Last updated: 2026-03-05T12:26:14.062Z
Metrics
LOC: 3
Complexity: 1
Params: 1
Signature
buildCSSPath(el: Element): : string
Summary
Returns the CSS path string for an element (the fallback CSS strategy value). Exported so other modules (e.g. action-recorder) can use the same path logic.
Source Code
export function buildCSSPath(el: Element): string {
return buildFallbackCSS(el).value;
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| buildFallbackCSS | calls |
Impact (Incoming)
| Source | Type |
|---|---|
| StepCallback | uses |
| buildQuickSelector | calls |
| createElement | uses |