public Task ToContainTextAsync(Regex expected, LocatorAssertionsToContainTextOptions options = null) =>
 ExpectImplAsync("to.have.text", ExpectedRegex(expected, new() { MatchSubstring = true, NormalizeWhiteSpace = true }), expected, "Locator expected text matching regex", ConvertToFrameExpectOptions(options));
 public Task ToContainTextAsync(string expected, LocatorAssertionsToContainTextOptions options = null) =>
 ExpectImplAsync("to.have.text", new ExpectedTextValue()
 {
     String = expected, MatchSubstring = true, NormalizeWhiteSpace = true
 }, expected, "Locator expected to contain text", ConvertToFrameExpectOptions(options));