| 215 | |
| 216 | |
| 217 | class ExpectedTextValue(TypedDict, total=False): |
| 218 | string: str |
| 219 | regexSource: str |
| 220 | regexFlags: str |
| 221 | matchSubstring: bool |
| 222 | normalizeWhiteSpace: bool |
| 223 | ignoreCase: Optional[bool] |
| 224 | |
| 225 | |
| 226 | class FrameExpectOptions(TypedDict, total=False): |
no outgoing calls
no test coverage detected