diff --git a/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java b/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java index 93ddcfcb83d10..2a3a0f64ba06d 100644 --- a/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java +++ b/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java @@ -235,7 +235,6 @@ void canListenToNavigationCommittedEvent() @Test @NeedsFreshDriver - @NotYetImplemented(FIREFOX) void canListenToDownloadWillBeginEvent() throws ExecutionException, InterruptedException, TimeoutException { try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) { diff --git a/javascript/selenium-webdriver/test/bidi/network_test.js b/javascript/selenium-webdriver/test/bidi/network_test.js index 0cfdd2059021c..664e6433ff62e 100644 --- a/javascript/selenium-webdriver/test/bidi/network_test.js +++ b/javascript/selenium-webdriver/test/bidi/network_test.js @@ -97,8 +97,8 @@ suite( assert.equal(beforeRequestEvent[0].request.method, 'GET') assert(beforeRequestEvent[0].request.url.includes('redirected_http_equiv.html')) - assert.equal(beforeRequestEvent[2].request.method, 'GET') - assert(beforeRequestEvent[2].request.url.includes('redirected.html')) + assert.equal(beforeRequestEvent[1].request.method, 'GET') + assert(beforeRequestEvent[1].request.url.includes('redirected.html')) }) it('can subscribe to response started', async function () {