We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, After each successful run 3 additional chrome processes are created, so if I run the script 10 times I'll have 30 chrome processes running.
ps aux | grep chrome joe 63375 0.0 1.8 527292 306640 0 I 17:25 0:01.04 chrome: --type=gpu-process --disable-breakpad --headless=new --ozone-platform=headless -- joe 63376 0.0 1.4 358512 227956 0 I 17:25 0:00.33 chrome: --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --ser joe 63377 0.0 1.4 355796 226564 0 I 17:25 0:00.16 chrome: --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --ser
Operating system=FreeBSD 14.2 Chrome version=131.0.6778.139
Python:
import asyncio import zendriver as zd async def main(): browser = await zd.start( headless=True, browser_executable_path="/usr/local/bin/chrome", ) page = await browser.get("https://www.google.com") await page.close() await browser.stop() if __name__ == "__main__": zd.loop().run_until_complete(main())
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
After each successful run 3 additional chrome processes are created, so if I run the script 10 times I'll have 30 chrome processes running.
Operating system=FreeBSD 14.2
Chrome version=131.0.6778.139
Python:
The text was updated successfully, but these errors were encountered: