-
Due to some reason, I hope the project can use a specific version:https://googlechromelabs.github.io/chrome-for-testing/ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi! You can use Example: from crawlee.playwright_crawler import PlaywrightCrawler, PlaywrightCrawlingContext
from crawlee.browsers import BrowserPool, PlaywrightBrowserPlugin
user_plugin = PlaywrightBrowserPlugin(browser_options={"executable_path": "{PATH}"})
browser_pool = BrowserPool(plugins=[user_plugin])
crawler = PlaywrightCrawler(browser_pool=browser_pool) |
Beta Was this translation helpful? Give feedback.
-
Hi, you can provide the I will add that setting these values via env variables is currently not supported. You can monitor the progress in #670. |
Beta Was this translation helpful? Give feedback.
Hi!
You can use
PlaywrightBrowserPlugin
for this purposeExample: