selenium/webdriver/remote/webdriver.py에서 보면 close와 quit는 이렇게 설명 되어있습니다.
close
현재 창을 닫습니다.
def close(self) -> None:
"""Closes the current window.
:Usage:
::
driver.close()
"""
self.execute(Command.CLOSE)
quit
driver와 모든 창을 닫습니다.
def quit(self) -> None:
"""Quits the driver and closes every associated window.
:Usage:
::
driver.quit()
"""
try:
self.execute(Command.QUIT)
finally:
self.stop_client()
self.command_executor.close()
728x90
'Python > Selenium' 카테고리의 다른 글
[Selenium] 백그라운드로 실행 ( 창 안보이게 실행 ) (0) | 2023.05.21 |
---|---|
[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] 브라우저 종료하지 않고 유지하기 (0) | 2023.05.01 |
[Selenium] AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' (0) | 2023.05.01 |
댓글