Improve CDP memory usage
If you're spinning up a lot of CDP Mode web browsers in a loop within a Python file, then you'll use less memory because resources will get freed up at the end of the with SB() as sb:
block, rather than after you've reached the end of the Python file (where regular garbage collection takes place).
Related discussion: #3679 - (Special thanks @felipehertzer. Joint effort with @mdmintz )
What's Changed
Full Changelog: v4.37.9...v4.37.10