(selector: string | [string, string], property: string)
| 2225 | |
| 2226 | return { |
| 2227 | getPropertyValue(selector: string | [string, string], property: string) { |
| 2228 | return getPropertyValue( |
| 2229 | page, |
| 2230 | Array.isArray(selector) ? selector : [selector, undefined], |
| 2231 | property, |
| 2232 | ) |
| 2233 | }, |
| 2234 | |
| 2235 | async getPropertyList(selector: string | [string, string], property: string) { |
| 2236 | let value = await getPropertyValue( |
no test coverage detected