From 1602548c105a9ba83de1f905bcc11f78eb193fc1 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 1 Apr 2024 10:54:51 -0700 Subject: [PATCH] docs(java,csharp): add BrowserContext.backgroundPage(s) (#30200) Refereence https://github.com/microsoft/playwright-java/issues/1530 --- docs/src/api/class-browsercontext.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/src/api/class-browsercontext.md b/docs/src/api/class-browsercontext.md index 54884fbd59..e4bae85f7d 100644 --- a/docs/src/api/class-browsercontext.md +++ b/docs/src/api/class-browsercontext.md @@ -64,7 +64,6 @@ await context.CloseAsync(); ## event: BrowserContext.backgroundPage * since: v1.11 -* langs: js, python - argument: <[Page]> :::note @@ -73,6 +72,13 @@ Only works with Chromium browser's persistent context. Emitted when new background page is created in the context. +```java +Page backgroundPage = context.waitForBackgroundPage(() -> { + page.getByText("activate extension").click(); +}); +System.out.println(backgroundPage.evaluate("location.href")); +``` + ```js const backgroundPage = await context.waitForEvent('backgroundpage'); ``` @@ -85,6 +91,14 @@ background_page = await context.wait_for_event("backgroundpage") background_page = context.wait_for_event("backgroundpage") ``` +```csharp +var backgroundPage = await context.RunAndWaitForBackgoundPageAsync(async => +{ + await page.GetByText("activate extension").ClickAsync(); +}); +Console.WriteLine(await backgroundPage.EvaluateAsync("location.href")); +``` + ## event: BrowserContext.close * since: v1.8 - argument: <[BrowserContext]> @@ -441,7 +455,6 @@ Script to be evaluated in all pages in the browser context. Optional. ## method: BrowserContext.backgroundPages * since: v1.11 -* langs: js, python - returns: <[Array]<[Page]>> :::note