DB_JOB/작업파일/공공기관2/6.한국중부발전/_temp_mont2.py
hehihoho3 df16c98366 백업: DB수집 전체 스냅샷 (공공기관2 정리 전)
공공기관2 작업 중. _temp 몽타주(재생성가능)는 제외.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 18:15:40 +09:00

8 lines
452 B
Python

from playwright.sync_api import sync_playwright
with sync_playwright() as p:
b=p.chromium.launch(); pg=b.new_page(viewport={'width':1200,'height':2000},ignore_https_errors=True)
pg.goto('https://www.komipo.co.kr/esg/content/418/main.do?mnCd=ESG03030105',wait_until='load',timeout=30000)
pg.wait_for_timeout(1500)
(pg.query_selector('#content') or pg).screenshot(path='_nshots_tab/인권추진조직_418.png')
print('ok'); b.close()