Skip to content

Commit ebb2283

Browse files
Stainless Botstainless-bot
Stainless Bot
authored andcommitted
feat: various codegen changes
1 parent 4e78a7e commit ebb2283

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Diff for: examples/e2e/test_playwright.py

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import pytest
55
from dotenv import load_dotenv
66
from playwright.sync_api import Playwright, sync_playwright
7-
87
from browserbase import Browserbase
98

109
from .. import (
@@ -28,7 +27,6 @@ def playwright() -> Generator[Playwright, None, None]:
2827
with sync_playwright() as p:
2928
yield p
3029

31-
3230
def test_playwright_basic(playwright: Playwright) -> None:
3331
playwright_basic.run(playwright)
3432

Diff for: examples/playwright_captcha.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from playwright.sync_api import Playwright, ConsoleMessage, sync_playwright
22

3+
34
from examples import (
45
BROWSERBASE_API_KEY,
56
BROWSERBASE_PROJECT_ID,

Diff for: examples/playwright_contexts.py

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from playwright.sync_api import Cookie, Browser, Playwright, sync_playwright
55

6+
67
from examples import (
78
BROWSERBASE_API_KEY,
89
BROWSERBASE_PROJECT_ID,
@@ -14,6 +15,7 @@
1415
BrowserSettingsContext,
1516
)
1617

18+
1719
CONTEXT_TEST_URL = "https://www.browserbase.com"
1820
SECOND = 1000
1921

Diff for: examples/playwright_downloads.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from playwright.sync_api import Playwright, sync_playwright
66

7+
78
from examples import (
89
BROWSERBASE_API_KEY,
910
BROWSERBASE_PROJECT_ID,

0 commit comments

Comments
 (0)