| 21 | } |
| 22 | |
| 23 | export interface SelectorOptions { |
| 24 | role?: string; |
| 25 | text?: string; |
| 26 | label?: string; |
| 27 | placeholder?: string; |
| 28 | alt?: string; |
| 29 | title?: string; |
| 30 | testid?: string; |
| 31 | xpath?: string; |
| 32 | near?: string; |
| 33 | timeout?: number; |
| 34 | } |
| 35 | |
| 36 | export class Element { |
| 37 | private client: BiDiClient; |
nothing calls this directly
no outgoing calls
no test coverage detected