From 7de72a643278c8257e9ce614cb073d30a4572798 Mon Sep 17 00:00:00 2001 From: Devin Rousso Date: Mon, 3 Aug 2026 10:23:04 -0600 Subject: [PATCH] chore(driver): roll to 1.62.0 (#1954) --- README.md | 2 +- .../microsoft/playwright/BrowserContext.java | 17 ------------ .../playwright/impl/BrowserContextImpl.java | 3 --- .../microsoft/playwright/impl/HARRouter.java | 26 ------------------- .../playwright/TestBrowserContextHar.java | 25 ------------------ .../com/microsoft/playwright/TestWorkers.java | 4 +-- scripts/DRIVER_VERSION | 2 +- 7 files changed, 3 insertions(+), 76 deletions(-) diff --git a/README.md b/README.md index 08f5626c..ccbe72f6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom | :--- | :---: | :---: | :---: | | Chromium 151.0.7922.34 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | WebKit 26.5 | ✅ | ✅ | ✅ | -| Firefox 152.0.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | +| Firefox 153.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: | ## Documentation diff --git a/playwright/src/main/java/com/microsoft/playwright/BrowserContext.java b/playwright/src/main/java/com/microsoft/playwright/BrowserContext.java index 49ace553..2cff8345 100644 --- a/playwright/src/main/java/com/microsoft/playwright/BrowserContext.java +++ b/playwright/src/main/java/com/microsoft/playwright/BrowserContext.java @@ -363,13 +363,6 @@ public interface BrowserContext extends AutoCloseable { } } class RouteFromHAROptions { - /** - * If set to {@code true}, requests made via {@code APIRequestContext} (such as {@link - * com.microsoft.playwright.BrowserContext#request BrowserContext.request()} or {@link - * com.microsoft.playwright.Page#request Page.request()}) are also served from the HAR file. By default these requests are - * sent to the network, matching the behavior prior to v1.62. Defaults to {@code false} for backward compatibility. - */ - public Boolean interceptAPIRequests; /** *