from IPython.display import Image, display
import os
error_screenshot_path = os.path.join(download_dir, "error_screenshot.png")
if os.path.exists(error_screenshot_path):
print(f"Displaying error screenshot from: {error_screenshot_path}")
display(Image(filename=error_screenshot_path))
else:
print("Error screenshot not found.")'Python' 카테고리의 다른 글
| [Error] pdr_override() (0) | 2026.05.21 |
|---|---|
| [Error] Webdriver_manager 오류 해결하기 (0) | 2026.05.18 |
| [Google Colab] 구글 코랩에서 Selenium 창열기 (0) | 2026.05.06 |
| 정적 크롤링 (0) | 2026.05.03 |
| [Google Colab] 파일 덮어쓰기/ 파일을 저장할 때, 같은 이름이 있으면? (0) | 2023.01.18 |