|
I've always used the SB context manager in the past, but on my current project I found the standalone driver more convenient i.e. However, I'm unsure how to close the cdp connection and quit the browser in the same way the context manager does after the yield. I've seen other discussions mention using Thanks! |
Answered by
mdmintz
May 24, 2025
Replies: 2 comments
|
I would use |
0 replies
Answer selected by
mdmintz
|
Any method for |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would use
sb.driver.stop(), as that will quit the browser, and should free up resources used.