diff --git a/crawl4ai/browser_manager.py b/crawl4ai/browser_manager.py index d4e074cfc..419157bb1 100644 --- a/crawl4ai/browser_manager.py +++ b/crawl4ai/browser_manager.py @@ -214,7 +214,7 @@ async def start(self) -> str: else: # macOS / Linux # kill any process listening on the same debugging port pids = ( - subprocess.check_output(shlex.split(f"lsof -t -i:{self.debugging_port}")) + subprocess.check_output(shlex.split(f"lsof -Q -t -i:{self.debugging_port}")) .decode() .strip() .splitlines()