Skip to content

Commit b88f688

Browse files
committed
[dotnet] [bidi] Rename entry point AsBidirectional to AsBiDirectional
To keep aligned with naming and with other bindings
1 parent 7602371 commit b88f688

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotnet/src/webdriver/BiDi/WebDriver.Extensions.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace OpenQA.Selenium.BiDi;
55

66
public static class WebDriverExtensions
77
{
8-
public static async Task<BiDi> AsBidirectionalAsync(this IWebDriver webDriver)
8+
public static async Task<BiDi> AsBiDirectionalAsync(this IWebDriver webDriver)
99
{
1010
var webSocketUrl = ((IHasCapabilities)webDriver).Capabilities.GetCapability("webSocketUrl");
1111

@@ -16,9 +16,9 @@ public static async Task<BiDi> AsBidirectionalAsync(this IWebDriver webDriver)
1616
return bidi;
1717
}
1818

19-
public static async Task<BrowsingContext> AsBidirectionalContextAsync(this IWebDriver webDriver)
19+
public static async Task<BrowsingContext> AsBiDirectionalContextAsync(this IWebDriver webDriver)
2020
{
21-
var bidi = await webDriver.AsBidirectionalAsync();
21+
var bidi = await webDriver.AsBiDirectionalAsync();
2222

2323
var currentBrowsingContext = new BrowsingContext(bidi, webDriver.CurrentWindowHandle);
2424

0 commit comments

Comments
 (0)