(frame: import('playwright').Frame | null)
| 1247 | |
| 1248 | // ─── Frame context (delegates to active session) ──────────── |
| 1249 | setFrame(frame: import('playwright').Frame | null): void { |
| 1250 | this.getActiveSession().setFrame(frame); |
| 1251 | } |
| 1252 | |
| 1253 | getFrame(): import('playwright').Frame | null { |
| 1254 | return this.getActiveSession().getFrame(); |
no test coverage detected