Skip to content

Commit 5dfda93

Browse files
authored
[dotnet] [bidi] Remove NavigateBack and NavigateForward as not a part… (#16068)
[dotnet] [bidi] Remove NavigateBack and NavigateForward as not a part of low level
1 parent f6ddd3f commit 5dfda93

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

dotnet/src/webdriver/BiDi/BrowsingContext/BrowsingContext.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,6 @@ public Task TraverseHistoryAsync(int delta, TraverseHistoryOptions? options = nu
9191
return BiDi.BrowsingContext.TraverseHistoryAsync(this, delta, options);
9292
}
9393

94-
public Task NavigateBackAsync(TraverseHistoryOptions? options = null)
95-
{
96-
return TraverseHistoryAsync(-1, options);
97-
}
98-
99-
public Task NavigateForwardAsync(TraverseHistoryOptions? options = null)
100-
{
101-
return TraverseHistoryAsync(1, options);
102-
}
103-
10494
public Task SetViewportAsync(SetViewportOptions? options = null)
10595
{
10696
return BiDi.BrowsingContext.SetViewportAsync(this, options);

0 commit comments

Comments
 (0)