공공기관2 작업 중. _temp 몽타주(재생성가능)는 제외. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
8 lines
452 B
Python
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()
|