Is there a way to keep the browser window open after the test execution in RobotFramework? [closed]
I am looking to keep the browser window open even after test execution. I would like to keep it open indefinitely. As of now , as a work around I am just using "Sleep" to keep the window from closing. Any help would be much appreciated. Thank you ! Simple - do not call Close Browser at the end. Ideally, the WebDriver service should stop once your script ends due to this code . However if you want Chrome and ChromeDriver to stay open afterwards, you can add the experimental option detach when initializing the chromedriver. Through Selenium-Python client you can: from selenium import webdriver