We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e35634 commit 81974bbCopy full SHA for 81974bb
dotnet/src/webdriver/BiDi/Modules/BrowsingContext/Locator.cs
@@ -43,15 +43,15 @@ public record InnerTextLocator(string Value) : Locator
43
{
44
public bool? IgnoreCase { get; set; }
45
46
- public MatchType? MatchType { get; set; }
+ public Match? MatchType { get; set; }
47
48
public long? MaxDepth { get; set; }
49
+
50
+ public enum Match
51
+ {
52
+ Full,
53
+ Partial
54
+ }
55
}
56
57
public record XPathLocator(string Value) : Locator;
-
-public enum MatchType
-{
- Full,
- Partial
-}
0 commit comments