selenium.webdriver.chrome.optins Options중에서 add_experimental_option을 사용해서
브라우저 종료하지않고 유지하게 할 수 있습니다.
예제
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome('./chromedriver', options=options)
참조
[selenium excluding-arguments]: https://www.selenium.dev/documentation/webdriver/browsers/chrome/#excluding-arguments
[selenium webdriver chrome options]: https://www.selenium.dev/selenium/docs/api/py/webdriver_chrome/selenium.webdriver.chrome.options.html
728x90
'Python > Selenium' 카테고리의 다른 글
[Selenium] 백그라운드로 실행 ( 창 안보이게 실행 ) (0) | 2023.05.21 |
---|---|
[Selenium] 브라우저 종료 (close, quit 차이) (0) | 2023.05.20 |
[Selenium] not clickable 예외 (0) | 2023.05.18 |
[Selenium] DeprecationWarning: executable_path has been deprecated, please pass in a Service object (0) | 2023.05.02 |
[Selenium] AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' (0) | 2023.05.01 |
댓글