@@ -33,49 +33,49 @@ private SelectiveRegion(Region region, DiffingOption? enableOnly, DiffingOption?
33
33
}
34
34
35
35
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
36
- public static SelectiveRegion EnabledRegion ( IWebElement element )
36
+ public static SelectiveRegion EnabledFor ( IWebElement element )
37
37
{
38
38
return new SelectiveRegion ( element , null , null ) ;
39
39
}
40
40
41
41
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
42
- public static SelectiveRegion EnabledRegion ( IWebElement element , DiffingOption flags )
42
+ public static SelectiveRegion EnabledFor ( IWebElement element , DiffingOption flags )
43
43
{
44
44
return new SelectiveRegion ( element , flags , null ) ;
45
45
}
46
46
47
47
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
48
- public static SelectiveRegion EnabledRegion ( Region region )
48
+ public static SelectiveRegion EnabledFor ( Region region )
49
49
{
50
50
return new SelectiveRegion ( region , DiffingOption . None , null ) ;
51
51
}
52
52
53
53
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
54
- public static SelectiveRegion EnabledRegion ( Region region , DiffingOption flags )
54
+ public static SelectiveRegion EnabledFor ( Region region , DiffingOption flags )
55
55
{
56
56
return new SelectiveRegion ( region , flags , null ) ;
57
57
}
58
58
59
59
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
60
- public static SelectiveRegion DisabledRegion ( IWebElement element )
60
+ public static SelectiveRegion DisabledFor ( IWebElement element )
61
61
{
62
62
return new SelectiveRegion ( element , null , DiffingOption . None ) ;
63
63
}
64
64
65
65
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
66
- public static SelectiveRegion DisabledRegion ( IWebElement element , DiffingOption flags )
66
+ public static SelectiveRegion DisabledFor ( IWebElement element , DiffingOption flags )
67
67
{
68
68
return new SelectiveRegion ( element , null , flags ) ;
69
69
}
70
70
71
71
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
72
- public static SelectiveRegion DisabledRegion ( Region region )
72
+ public static SelectiveRegion DisabledFor ( Region region )
73
73
{
74
74
return new SelectiveRegion ( region , null , DiffingOption . None ) ;
75
75
}
76
76
77
77
[ Obsolete ( "WARNING: This API is currently unstable. It may be changed at anytime" ) ]
78
- public static SelectiveRegion DisabledRegion ( Region region , DiffingOption flags )
78
+ public static SelectiveRegion DisabledFor ( Region region , DiffingOption flags )
79
79
{
80
80
return new SelectiveRegion ( region , null , flags ) ;
81
81
}
0 commit comments