Skip to content

Commit b5fa955

Browse files
authored
feat: Expose PlaywrightPersistentBrowser class (#1314)
### Description - Add `PlaywrightPersistentBrowser` to public exports
1 parent 83e3dbe commit b5fa955

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/crawlee/browsers/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
from ._playwright_browser_controller import PlaywrightBrowserController
1919
with _try_import(__name__, 'PlaywrightBrowserPlugin'):
2020
from ._playwright_browser_plugin import PlaywrightBrowserPlugin
21+
with _try_import(__name__, 'PlaywrightPersistentBrowser'):
22+
from ._playwright_browser import PlaywrightPersistentBrowser
2123

22-
__all__ = [
23-
'BrowserPool',
24-
'PlaywrightBrowserController',
25-
'PlaywrightBrowserPlugin',
26-
]
24+
__all__ = ['BrowserPool', 'PlaywrightBrowserController', 'PlaywrightBrowserPlugin', 'PlaywrightPersistentBrowser']

0 commit comments

Comments
 (0)