Ctrl+C ends the session, closes the browser window and kills the chromedriver #2917
Answered
by
beatfactor
chriscuba23
asked this question in
Help Needed
-
Hello, I was wondering if there is a parameter that stops the window from closing and/or chromedriver from terminating when I press Ctrl+C. I want to kill the script execution but leave the window open for debugging purposes |
Beta Was this translation helpful? Give feedback.
Answered by
beatfactor
Oct 14, 2021
Replies: 1 comment
-
You can set |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
beatfactor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set
end_session_on_fail
to true but that's mostly for when the test fails. For debugging purposes I also use .pause() with no arguments so then I can inspect the web app under test.