From 5affd333a78b0354f741c00eb25b20d4548b3865 Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Fri, 24 Feb 2023 06:34:37 -0800 Subject: [PATCH] feat(webkit): roll to r1801 (#21183) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Max Schmitt --- packages/playwright-core/browsers.json | 2 +- tests/library/browsercontext-proxy.spec.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index b9f8a11d68..dc8e26481d 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -33,7 +33,7 @@ }, { "name": "webkit", - "revision": "1799", + "revision": "1801", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/tests/library/browsercontext-proxy.spec.ts b/tests/library/browsercontext-proxy.spec.ts index b73138b1b9..e1c74a552b 100644 --- a/tests/library/browsercontext-proxy.spec.ts +++ b/tests/library/browsercontext-proxy.spec.ts @@ -210,8 +210,7 @@ it('should use proxy for second page', async ({ contextFactory, server, proxySer await context.close(); }); -it('should use proxy for https urls', async ({ contextFactory, httpsServer, proxyServer, isWindows, browserName }) => { - it.fixme(browserName === 'webkit' && isWindows, 'Fixed upstream, https://github.com/microsoft/playwright/issues/20822'); +it('should use proxy for https urls', async ({ contextFactory, httpsServer, proxyServer }) => { httpsServer.setRoute('/target.html', async (req, res) => { res.end('Served by https server via proxy'); });