(selector?: string)
| 196 | // ─── Reading ──────────────────────────────────────────────────── |
| 197 | |
| 198 | async text(selector?: string): Promise<string> { |
| 199 | return this.command('text', selector ? [selector] : []); |
| 200 | } |
| 201 | async html(selector?: string): Promise<string> { |
| 202 | return this.command('html', selector ? [selector] : []); |
| 203 | } |