From 36aea25082a4ea9775fa0b986e0d23fbf59041b8 Mon Sep 17 00:00:00 2001 From: Nikolay Borisenko <22616990+nvborisenko@users.noreply.github.com> Date: Thu, 17 Jul 2025 21:29:54 +0300 Subject: [PATCH] [dotnet] [bidi] Remove NavigateBack and NavigateForward as not a part of low level --- .../webdriver/BiDi/BrowsingContext/BrowsingContext.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dotnet/src/webdriver/BiDi/BrowsingContext/BrowsingContext.cs b/dotnet/src/webdriver/BiDi/BrowsingContext/BrowsingContext.cs index 88d765491d7f8..ff93d8d487ca9 100644 --- a/dotnet/src/webdriver/BiDi/BrowsingContext/BrowsingContext.cs +++ b/dotnet/src/webdriver/BiDi/BrowsingContext/BrowsingContext.cs @@ -91,16 +91,6 @@ public Task TraverseHistoryAsync(int delta, TraverseHistoryOptions? options = nu return BiDi.BrowsingContext.TraverseHistoryAsync(this, delta, options); } - public Task NavigateBackAsync(TraverseHistoryOptions? options = null) - { - return TraverseHistoryAsync(-1, options); - } - - public Task NavigateForwardAsync(TraverseHistoryOptions? options = null) - { - return TraverseHistoryAsync(1, options); - } - public Task SetViewportAsync(SetViewportOptions? options = null) { return BiDi.BrowsingContext.SetViewportAsync(this, options);