File tree 1 file changed +3
-3
lines changed
dotnet/src/webdriver/BiDi
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace OpenQA.Selenium.BiDi;
5
5
6
6
public static class WebDriverExtensions
7
7
{
8
- public static async Task < BiDi > AsBiDirectionalAsync ( this IWebDriver webDriver )
8
+ public static async Task < BiDi > AsBiDiAsync ( this IWebDriver webDriver )
9
9
{
10
10
var webSocketUrl = ( ( IHasCapabilities ) webDriver ) . Capabilities . GetCapability ( "webSocketUrl" ) ;
11
11
@@ -16,9 +16,9 @@ public static async Task<BiDi> AsBiDirectionalAsync(this IWebDriver webDriver)
16
16
return bidi ;
17
17
}
18
18
19
- public static async Task < BrowsingContext > AsBiDirectionalContextAsync ( this IWebDriver webDriver )
19
+ public static async Task < BrowsingContext > AsBiDiContextAsync ( this IWebDriver webDriver )
20
20
{
21
- var bidi = await webDriver . AsBiDirectionalAsync ( ) ;
21
+ var bidi = await webDriver . AsBiDiAsync ( ) ;
22
22
23
23
var currentBrowsingContext = new BrowsingContext ( bidi , webDriver . CurrentWindowHandle ) ;
24
24
You can’t perform that action at this time.
0 commit comments