-
I'm Using SeleniumBase Driver module I want my browser to keep running after my script ends, Is it possible ? |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Jan 9, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
breakpoint()
for pausing your script at the end (which keeps the browser open).pytest --rs
for reusing the browser session between tests in the same thread.